service/api/proto/firenze/websocket.go

10 lines
175 B
Go
Raw Normal View History

2024-10-12 16:28:53 +08:00
package firenze
import "encoding/json"
type SendBizMsgParam struct {
Sid string `json:"sid"`
Mid int64 `json:"mid"`
Msg json.RawMessage `json:"msg"`
}