mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2025-12-07 19:02:50 +08:00
17 lines
225 B
Go
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
|
|
}
|