github.com/keys-pub/mattermost-server@v4.10.10+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  	"mime/multipart"
     8  
     9  	"github.com/mattermost/mattermost-server/model"
    10  )
    11  
    12  type BrandInterface interface {
    13  	SaveBrandImage(*multipart.FileHeader) *model.AppError
    14  	GetBrandImage() ([]byte, *model.AppError)
    15  }