This commit is contained in:
laodaming
2023-10-18 14:40:50 +08:00
parent 57e6b0227f
commit fbbf6b984f
3 changed files with 7 additions and 8 deletions

View File

@@ -2,7 +2,8 @@ package websocket_data
// 基础连接成功返回
type ConnectSuccessMsg struct {
Wid string `json:"wid"`
Wid string `json:"wid"` //websocket连接唯一标识
Debug bool `json:"debug"` //是否开启debug
}
// 连接失败

View File

@@ -4,9 +4,8 @@ import "fusenapi/constants"
// websocket数据交互基本数据类型
type DataTransferData struct {
T constants.Websocket `json:"t"` //消息类型
D interface{} `json:"d"` //传递的消息
Debug bool `json:"debug"` //是否开启debug
T constants.Websocket `json:"t"` //消息类型
D interface{} `json:"d"` //传递的消息
}
// websocket接受要云渲染处理的数据