12 lines
280 B
Go
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"`
|
|
}
|