1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00
wakapi/models/config.go
Ferdinand Muetsch 86fe3a4bae Add ability to listen on public interface.
Add ability to handle unknown keys.
Update Readme.
2019-05-21 14:02:04 +02:00

12 lines
166 B
Go

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