2017-12-19 13:16:39 +01:00

16 lines
175 B
Go

package api
type Config struct {
Enabled bool
Host string
Port int
}
var (
DefaultConfig = Config{
Enabled: false,
Host: "localhost",
Port: 5066,
}
)