videoplayer/proto/im.go

15 lines
361 B
Go
Raw Permalink Normal View History

2024-06-27 10:53:47 +08:00
package proto
type ImKeyReq struct {
To_user_id int `json:"to_user_id" form:"to_user_id" binding:"required"`
}
// 定义WebSocket消息格式
type Message struct {
Type string `json:"type"`
Msg string `json:"data"`
To_user_id int `json:"to_user_id"`
From_user_id int `json:"from_user_id"`
Session string `json:"session"`
}