summaryrefslogtreecommitdiffstats
path: root/einterfaces/brand.go
blob: fc584a91c665520a14ff4233da0bc4bd734b0ec5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package einterfaces

import (
	"github.com/mattermost/mattermost-server/model"
	"mime/multipart"
)

type BrandInterface interface {
	SaveBrandImage(*multipart.FileHeader) *model.AppError
	GetBrandImage() ([]byte, *model.AppError)
}