Versions in this module Expand all Collapse all v0 v0.0.5 Oct 8, 2020 Changes in this version + var ErrNoRecord = errors.New("record not found") + func NewSQLStore(dbPath string) (*sqlStore, error) + type KeyValue struct + Key string + Value string + type Store interface + Delete func(key string) error + Get func(key string) (string, error) + GetAllWithPrefixed func(keyPrefix string) ([]KeyValue, error) + Set func(key string, value string) error