server_events/v2/event.go

8 lines
149 B
Go

package serverevents
type Event struct {
Type string `json:"type"`
Data any `json:"data"`
IsBackendOnly bool `json:"-"`
}