package webstocetmsg import ( "github.com/gorilla/websocket" ) type WebSocketClientBase struct { ID string Conn *websocket.Conn LastHeartbeat int64 BindUid string JoinGroup []string } type WebSocketUserBase struct { Uid string ClientID []string } type WebSocketGroupBase struct { ClientID []string }