Files
wiz-controller/data.go
Michael Lehmann f34cf6da8b wip
2025-02-18 22:06:50 +01:00

17 lines
380 B
Go

package main
// BulbStatus fasst den Status zusammen, der im Template dargestellt wird.
type BulbStatus struct {
IP string
Port string
Name string
IsOn bool
Message string // Optional: Zusätzliche Infos, z. B. Fehleranzeige
}
// GroupStatus repräsentiert eine Gruppe von Bulbs für die Anzeige.
type GroupStatus struct {
Name string
Bulbs []BulbStatus
}