1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00
wakapi/models/config.go

14 lines
254 B
Go
Raw Normal View History

2019-05-05 23:36:49 +03:00
package models
2019-05-16 23:51:11 +03:00
import "time"
2019-05-05 23:36:49 +03:00
type Config struct {
2019-05-16 23:51:11 +03:00
Port int
DbHost string
DbUser string
DbPassword string
DbName string
DbDialect string
AggregationInterval time.Duration
2019-05-05 23:36:49 +03:00
}