新增websocks服务端功能

This commit is contained in:
zyj
2025-08-30 17:41:19 +08:00
parent 1539bedc99
commit 0d43139523
3 changed files with 68 additions and 0 deletions

View File

@@ -3,7 +3,9 @@ package router
import "github.com/gin-gonic/gin"
var routerTest Test
var websocks Websocks
func Init(app *gin.Engine) {
routerTest.Init(app)
websocks.Init(app)
}