hotgo/server/api/websocket/base/send.go

21 lines
515 B
Go
Raw Normal View History

// 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 {
}