aqi/ws/pubsub_topic_msg.go

8 lines
183 B
Go
Raw Permalink Normal View History

2024-06-18 18:08:39 +08:00
package ws
type TopicMsg struct {
Ori any //原始数据方便订阅主题的函数处理
TopicId string //话题ID
Msg []byte //消息内容,方便客户端处理
}