Versions in this module Expand all Collapse all v0 v0.0.1 Apr 12, 2017 v0.0.0 Apr 12, 2017 Changes in this version + func Run(conn db.Conn) + type Store interface + Create func(path, value string, ttl time.Duration) error + Delete func(path string) error + Get func(path string) (string, error) + GetTree func(dir string) (Tree, error) + Mkdir func(dir string, ttl time.Duration) error + Refresh func(path, value string, ttl time.Duration) error + RefreshDir func(dir string, ttl time.Duration) error + Set func(path, value string, ttl time.Duration) error + Watch func(path string, rateLimit time.Duration) chan struct{} + func NewMock() Store + func NewStore() Store + type Tree struct + Children map[string]Tree + Key string + Value string