filebrowser/bolt/bolt.go
Henrique Dias 38bcc3b992 💬: add some more comments
License: MIT
Signed-off-by: Henrique Dias <hacdias@gmail.com>
2019-01-04 09:03:57 +00:00

10 lines
145 B
Go

package bolt
import "github.com/asdine/storm"
// Backend implements lib.StorageBackend
// using Bolt DB.
type Backend struct {
DB *storm.DB
}