[agent-go] 开始使用GO重构Agent部分

This commit is contained in:
zeaslity
2023-03-20 14:51:38 +08:00
parent 41de603234
commit 4961a4ddc7
13 changed files with 197 additions and 159 deletions

View File

@@ -0,0 +1,17 @@
package router
import (
"github.com/gin-gonic/gin"
)
func Routers() *gin.Engine {
Router := gin.Default()
ServerGroup := Router.Group("/core")
// register server app
ServerRouterAPP.InitServerRouter(ServerGroup)
return Router
}