Files
AynaLivePlayer/plugin/wshub/events.go
2024-04-29 20:22:35 -07:00

17 lines
225 B
Go

package wshub
import (
"AynaLivePlayer/pkg/event"
"encoding/json"
)
type EventData struct {
EventID event.EventId
Data interface{}
}
type EventDataReceived struct {
EventID event.EventId
Data json.RawMessage
}