service/api/proto/firenze/websocket.go

10 lines
175 B
Go

package firenze
import "encoding/json"
type SendBizMsgParam struct {
Sid string `json:"sid"`
Mid int64 `json:"mid"`
Msg json.RawMessage `json:"msg"`
}