lockserver/config/config.go

12 lines
179 B
Go
Raw Normal View History

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