README ¶ Simple Store It's a simple key-value store using BuntDB. Expand ▾ Collapse ▴ Documentation ¶ Index ¶ type Store func New(db string) *Store func (store *Store) Add(key string, value string) error func (store *Store) Get(key string) (string, error) func (store *Store) GetAll() ([]string, error) func (store *Store) Remove(key string) error Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Store ¶ added in v0.1.0 type Store struct { // contains filtered or unexported fields } func New ¶ added in v0.1.0 func New(db string) *Store func (*Store) Add ¶ added in v0.1.0 func (store *Store) Add(key string, value string) error func (*Store) Get ¶ added in v0.1.0 func (store *Store) Get(key string) (string, error) func (*Store) GetAll ¶ added in v0.1.0 func (store *Store) GetAll() ([]string, error) func (*Store) Remove ¶ added in v0.1.0 func (store *Store) Remove(key string) error Source Files ¶ View all Source files store.go Click to show internal directories. Click to hide internal directories.