wakapi/models/config.go

15 lines
283 B
Go
Raw Normal View History

2019-05-05 23:36:49 +03:00
package models
type Config struct {
2019-05-21 18:16:46 +03:00
Port int
Addr string
DbHost string
DbPort uint
2019-05-21 18:16:46 +03:00
DbUser string
DbPassword string
DbName string
DbDialect string
2019-10-11 10:06:34 +03:00
DbMaxConn uint
2019-05-21 18:16:46 +03:00
CustomLanguages map[string]string
2019-05-05 23:36:49 +03:00
}