Files
hotgo/server/internal/controller/websocket/send.go
2023-02-08 20:29:34 +08:00

31 lines
741 B
Go

// Package websocket
// @Link https://github.com/bufanyun/hotgo
// @Copyright Copyright (c) 2022 HotGo CLI
// @Author Ms <133814250@qq.com>
// @License https://github.com/bufanyun/hotgo/blob/master/LICENSE
//
package websocket
import (
"context"
"hotgo/internal/model/input/websocketin"
"hotgo/internal/websocket"
"hotgo/utility/simple"
)
// Send 通过http发送ws消息
var Send = send{}
type send struct{}
// ToTag 发送标签消息
func (c *send) ToTag(ctx context.Context, req *websocketin.SendToTagReq) (res *websocketin.SendToTagRes, err error) {
simple.SafeGo(ctx, func(ctx context.Context) {
websocket.SendToTag(req.Tag, &websocket.WResponse{
Event: req.Response.Event,
Data: req.Response,
})
})
return
}