1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00
wakapi/models/config.go
Ferdinand Mütsch 5247255d67 Db config DSN.
2019-05-06 00:47:38 +02:00

10 lines
131 B
Go

package models
type Config struct {
Port int
DbHost string
DbUser string
DbPassword string
DbName string
}