mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
14 lines
254 B
Go
14 lines
254 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Config struct {
|
|
Port int
|
|
DbHost string
|
|
DbUser string
|
|
DbPassword string
|
|
DbName string
|
|
DbDialect string
|
|
AggregationInterval time.Duration
|
|
}
|