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