mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-01-27 05:24:38 +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 {
|
||
|
}
|