diff options
author | Wim <wim@42.be> | 2016-05-21 14:14:08 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2016-05-21 14:14:08 +0200 |
commit | 33844fa60c5b432c4b6a4fb966be6e8f04627165 (patch) | |
tree | a678cbaed822633302e6a502689445ef4231ae69 /vendor/github.com/mattermost/platform/einterfaces/brand.go | |
parent | 85faa43145c6419529f8677026394bcdaee2157f (diff) | |
download | matterbridge-msglm-33844fa60c5b432c4b6a4fb966be6e8f04627165.tar.gz matterbridge-msglm-33844fa60c5b432c4b6a4fb966be6e8f04627165.tar.bz2 matterbridge-msglm-33844fa60c5b432c4b6a4fb966be6e8f04627165.zip |
Commit mattermost vendoringv0.4.1
Diffstat (limited to 'vendor/github.com/mattermost/platform/einterfaces/brand.go')
-rw-r--r-- | vendor/github.com/mattermost/platform/einterfaces/brand.go | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/vendor/github.com/mattermost/platform/einterfaces/brand.go b/vendor/github.com/mattermost/platform/einterfaces/brand.go new file mode 100644 index 00000000..7c15659b --- /dev/null +++ b/vendor/github.com/mattermost/platform/einterfaces/brand.go @@ -0,0 +1,24 @@ +// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved. +// See License.txt for license information. + +package einterfaces + +import ( + "github.com/mattermost/platform/model" + "mime/multipart" +) + +type BrandInterface interface { + SaveBrandImage(*multipart.FileHeader) *model.AppError + GetBrandImage() ([]byte, *model.AppError) +} + +var theBrandInterface BrandInterface + +func RegisterBrandInterface(newInterface BrandInterface) { + theBrandInterface = newInterface +} + +func GetBrandInterface() BrandInterface { + return theBrandInterface +} |