Files
mayfly-go/server/pkg/ws/msg.go

20 lines
255 B
Go

package ws
// 消息类型
type MsgType uint8
const (
JsonMsg MsgType = 1
TextMsg MsgType = 2
BinaryMsg MsgType = 3
)
// 消息信息
type Msg struct {
ToUserId UserId
Data any
Type MsgType // 消息类型
ToClientUuid string
}