17 lines
388 B
Go
17 lines
388 B
Go
package store
|
|
|
|
import "fmt"
|
|
|
|
// start flags are prefixed with the server name
|
|
// as the config in prefixed with the server name
|
|
// this allows viper to properly bind the flags
|
|
func prefix(f string) string {
|
|
return fmt.Sprintf("%s.%s", ServerName, f)
|
|
}
|
|
|
|
var (
|
|
FlagAppDBBackend = prefix("app-db-backend")
|
|
FlagKeepRecent = prefix("keep-recent")
|
|
FlagInterval = prefix("interval")
|
|
)
|