Files
tecamino-json_data/publish.go
Adrian Zürcher 85bd8de2a2 add files
2025-04-25 18:56:27 +02:00

12 lines
287 B
Go

package models
import "github.com/google/uuid"
type Publish struct {
Event string `json:"event,omitempty"`
Uuid uuid.UUID `json:"uuid,omitempty"`
Path string `json:"path,omitempty"`
Value any `json:"value,omitempty"`
Driver *Driver `json:"driver,omitempty"`
}