新增用户服务连接

This commit is contained in:
zyj
2025-09-02 11:40:46 +08:00
parent 3aae35abb7
commit 7371d04216
11 changed files with 195 additions and 0 deletions

View File

@@ -4,8 +4,10 @@ import "github.com/gin-gonic/gin"
var routerTest Test
var websocks Websocks
var user User
func Init(app *gin.Engine) {
routerTest.Init(app)
websocks.Init(app)
user.Init(app)
}