Files
tecamino-json_data/models/publish.go
2025-04-29 08:16:45 +02:00

12 lines
280 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"`
Type Type `json:"type,omitempty"`
Value any `json:"value,omitempty"`
}