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 b4c8e6ecb6 Introduce GORM.
2019-05-11 17:49:56 +02:00

11 lines
150 B
Go

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