Closed baumstern closed 4 years ago
the Store interface:
Store
type Store interface { Store(k Key) error Get(id string) (Key, error) GetAll() ([]Key, error) }
the
Store
interface: