6 lines
298 B
Go
6 lines
298 B
Go
// Package store provides a basic API for modules to interact with kv-stores
|
|
// independently of any implementation of that functionality.
|
|
// Additionally, it provides a set of interfaces for store implementations to
|
|
// adhere to, so that they can be used interchangeably by modules.
|
|
package store
|