add 站内通知、私信、websocket服务

This commit is contained in:
yxh
2024-01-02 17:50:07 +08:00
parent 8efecfb712
commit 1ddb117172
38 changed files with 2311 additions and 27 deletions

View File

@@ -0,0 +1,20 @@
/*
* @desc:ping
* @company:云南奇讯科技有限公司
* @Author: yixiaohu<yxh669@qq.com>
* @Date: 2023/11/30 15:59
*/
package controller
import (
"github.com/tiger1103/gfast/v3/library/libWebsocket"
)
var Ping = new(pingController)
type pingController struct{}
func (c *pingController) Ping(client *libWebsocket.Client, req *libWebsocket.WRequest) {
libWebsocket.SendSuccess(client, req.Event)
}