Versions in this module Expand all Collapse all v0 v0.4.1 Apr 27, 2014 Changes in this version + func Register(name string, init InitFunc) + type Adapter interface + All func() map[string]string + Delete func(string) + Get func(string) (string, bool) + Set func(string, string) + type InitFunc func() Adapter + func Load(name string) (InitFunc, error) v0.3.1 Mar 16, 2014 Changes in this version + type MemoryStore struct + func NewMemoryStore() *MemoryStore + func (s *MemoryStore) All() map[string]string + func (s *MemoryStore) Delete(key string) + func (s *MemoryStore) Get(key string) (string, bool) + func (s *MemoryStore) Set(key string, val string) + type Store interface + All func() map[string]string + Delete func(string) + Get func(string) (string, bool) + Set func(string, string)