package websocket_data // 基础连接成功返回 type ConnectSuccessMsg struct { Wid string `json:"wid"` } // 连接失败 type ConnectErrMsg struct { Message string `json:"message"` } // 未授权 type ConnectUnAuth struct { Message string `json:"message"` }