19 lines
236 B
Go
19 lines
236 B
Go
package ws_handler
|
|
|
|
import (
|
|
"google.golang.org/protobuf/proto"
|
|
)
|
|
|
|
type Event interface {
|
|
}
|
|
|
|
// ClientEvent 客户端发过来的Event
|
|
type ClientEvent struct {
|
|
Event
|
|
Msg proto.Message
|
|
}
|
|
|
|
type RemoveConnectionEvent struct {
|
|
Event
|
|
}
|