lockserver/config/config.go

13 lines
226 B
Go

package config
type Config struct {
ZWaveJSServer string
Database string
HTTPBind string
}
var C = Config{
ZWaveJSServer: "ws://home-assistant:3000",
Database: "lockserver.db",
HTTPBind: ":8080",
}