9 lines
128 B
Go
9 lines
128 B
Go
package bolt
|
|
|
|
import "github.com/asdine/storm"
|
|
|
|
// Backend implements lib.StorageBackend.
|
|
type Backend struct {
|
|
DB *storm.DB
|
|
}
|