6 lines
184 B
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)
|
|
}
|