mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
13 lines
239 B
Go
13 lines
239 B
Go
package models
|
|
|
|
type Config struct {
|
|
Port int
|
|
Addr string
|
|
DbHost string
|
|
DbUser string
|
|
DbPassword string
|
|
DbName string
|
|
DbDialect string
|
|
CustomLanguages map[string]string
|
|
}
|