1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00
This commit is contained in:
Ferdinand Mütsch
2020-02-20 15:39:56 +01:00
parent b7f700e7a5
commit 6d3891b398
8 changed files with 85 additions and 91 deletions

View File

@ -1,6 +1,7 @@
package models
type Config struct {
Env string
Port int
Addr string
DbHost string
@ -12,3 +13,7 @@ type Config struct {
DbMaxConn uint
CustomLanguages map[string]string
}
func (c *Config) IsDev() bool {
return c.Env == "dev"
}