Documentation ¶ Index ¶ type Client func (kv Client) GetTemplateData(userID string) (string, error) type KVStore func NewKVStore(client *pluginapi.Client) KVStore Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Client ¶ type Client struct { // contains filtered or unexported fields } func (Client) GetTemplateData ¶ func (kv Client) GetTemplateData(userID string) (string, error) Sample method to get a key-value pair in the KV store type KVStore ¶ type KVStore interface { // Define your methods here. This package is used to access the KVStore pluginapi methods. GetTemplateData(userID string) (string, error) } func NewKVStore ¶ func NewKVStore(client *pluginapi.Client) KVStore Source Files ¶ View all Source files kvstore.go startertemplate.go Click to show internal directories. Click to hide internal directories.