smon/dashboard.go
2026-08-20 07:05:54 +02:00

20 lines
264 B
Go

package main
type WidgetType int
const (
WidgetLabel WidgetType = iota
WidgetOnOff
)
type Widget struct {
Type WidgetType
X int
Y int
DatapointID int
Attributes map[string]string
}
type Dashboard struct {
Widgets []Widget
}