filebrowser/bolt/config.go
1138-4EB 7643b0c4e3 Rename manager to browser (#406)
* rename File Manager to File Browser

* rename fm to fb
2018-04-23 22:42:52 +01:00

27 lines
585 B
Go

package bolt
import (
"github.com/asdine/storm"
fb "github.com/filebrowser/filebrowser"
)
// ConfigStore is a configuration store.
type ConfigStore struct {
DB *storm.DB
}
// Get gets a configuration from the database to an interface.
func (c ConfigStore) Get(name string, to interface{}) error {
err := c.DB.Get("config", name, to)
if err == storm.ErrNotFound {
return fb.ErrNotExist
}
return err
}
// Save saves a configuration from an interface to the database.
func (c ConfigStore) Save(name string, from interface{}) error {
return c.DB.Set("config", name, from)
}