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 }