diff options
Diffstat (limited to 'config.go')
-rw-r--r-- | config.go | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -22,6 +22,7 @@ type serverConf struct { type systemConf struct { Verbose bool `toml:"verbose"` + Backend string `toml:"backend"` Store string `toml:"store"` SingleUser bool `toml:"single-user"` Private bool `toml:"private"` @@ -67,6 +68,7 @@ func confLoad() { var defConf = conf{ System: systemConf{ Verbose: false, + Backend: "filesystem", Store: "db", SingleUser: true, Private: false, |