Finn
054008eb1f
Connects to zwave-js, syncs all locks and codeslots with database, and records an event log. No support for updating code slots.
11 lines
179 B
Go
11 lines
179 B
Go
package config
|
|
|
|
type Config struct {
|
|
ZWaveJSServer string
|
|
Database string
|
|
}
|
|
|
|
var C = Config{
|
|
ZWaveJSServer: "ws://home-assistant:3000",
|
|
Database: "lockserver.db",
|
|
}
|