github.com/dschalla/mattermost-server@v4.8.1-rc1+incompatible/einterfaces/brand.go (about)

     1  // Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
     2  // See License.txt for license information.
     3  
     4  package einterfaces
     5  
     6  import (
     7  	"github.com/mattermost/mattermost-server/model"
     8  	"mime/multipart"
     9  )
    10  
    11  type BrandInterface interface {
    12  	SaveBrandImage(*multipart.FileHeader) *model.AppError
    13  	GetBrandImage() ([]byte, *model.AppError)
    14  }