mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-02-03 02:54:41 +08:00
21 lines
515 B
Go
21 lines
515 B
Go
// 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
|
|
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.SendToTagInp
|
|
}
|
|
|
|
type SendToTagRes struct {
|
|
}
|