mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-01-26 12:48:41 +08:00
16 lines
312 B
Go
16 lines
312 B
Go
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:"发送标签消息"`
|
|
websocketin.SendToTagInput
|
|
}
|
|
|
|
type SendToTagRes struct {
|
|
}
|