More Changes
All checks were successful
Golan Testing / testing (1.24.x, ubuntu-latest) (push) Successful in 25s

This commit is contained in:
2025-06-03 19:29:51 -04:00
parent 1419634fdb
commit 24bb305f65
2 changed files with 10 additions and 4 deletions

View File

@ -132,8 +132,8 @@ type GeoLocation struct {
type Door struct {
Position string // front | rear | boot | enginehood
SubPosition string // right | left
Status string // CLOSED |
Lock string // LOCKED |
Status string // CLOSED | OPEN
Lock string // LOCKED | UNLOCKED
Updated time.Time
}
@ -141,7 +141,7 @@ type Door struct {
type Window struct {
Position string
SubPosition string
Status string
Status string // CLOSE | VENTED | OPEN
Updated time.Time
}