mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
20 lines
255 B
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
|
|
}
|