Files
AynaLivePlayer/pkg/eventbus/bridge.go
2025-09-02 14:31:17 +08:00

10 lines
249 B
Go

package eventbus
// BusBridge is a minimal interface for a websocket-like JSON connection.
// Implemented by e.g. *websocket.Conn from gorilla via wrappers:
type BusBridge interface {
ReadJSON(v any) error
WriteJSON(v any) error
Close() error
}