1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00
wakapi/models/config.go
Ferdinand Mütsch 0e61870568 Resolve #7.
2020-03-31 11:24:44 +02:00

22 lines
422 B
Go

package models
type Config struct {
Env string
Port int
Addr string
DbHost string
DbPort uint
DbUser string
DbPassword string
DbName string
DbDialect string
DbMaxConn uint
CleanUp bool
CustomLanguages map[string]string
LanguageColors map[string]string
}
func (c *Config) IsDev() bool {
return c.Env == "dev"
}