mattermost-plugin-bridge-xmpp/server/store/kvstore/kvstore.go

6 lines
184 B
Go

package kvstore
type KVStore interface {
// Define your methods here. This package is used to access the KVStore pluginapi methods.
GetTemplateData(userID string) (string, error)
}