Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
Functions ¶
This section is empty.
Types ¶
type Store ¶
type Store interface { Store(key string, value []byte) error Get(key string) ([]byte, error) List() ([]string, error) Scan(prefix string) ([]string, error) }
Store ...
func NewDiskStorage ¶
NewDiskStorage creates a new diskStore struct with the given path the files that will be generated from this struct are stored in the path
Click to show internal directories.
Click to hide internal directories.