2023-08-07 17:58:24 +08:00
|
|
|
// Package base
|
|
|
|
// @Link https://github.com/bufanyun/hotgo
|
|
|
|
// @Copyright Copyright (c) 2023 HotGo CLI
|
|
|
|
// @Author Ms <133814250@qq.com>
|
|
|
|
// @License https://github.com/bufanyun/hotgo/blob/master/LICENSE
|
2023-02-23 17:53:04 +08:00
|
|
|
package base
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
|
|
"hotgo/internal/model/input/websocketin"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SendToTagReq 发送标签消息
|
|
|
|
type SendToTagReq struct {
|
|
|
|
g.Meta `path:"/send/toTag" method:"post" tags:"WebSocket" summary:"发送标签消息"`
|
2023-07-20 18:01:10 +08:00
|
|
|
websocketin.SendToTagInp
|
2023-02-23 17:53:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type SendToTagRes struct {
|
|
|
|
}
|