zhangzengfei
2024-10-22 a254bc563003a9e7b3a8f1307df38b8ae4274a4f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package routes
 
import (
    "gat1400Exchange/controller"
 
    "github.com/gin-gonic/gin"
)
 
// 注册公共功能路由
func InitSystemRouters(r *gin.RouterGroup) gin.IRoutes {
    sysCtl := controller.NewSystemController()
 
    router := r.Group("/System")
    {
        router.POST("/Register", sysCtl.Register)
        router.POST("/UnRegister", sysCtl.UnRegister)
        router.POST("/Keepalive", sysCtl.Keepalive)
        router.GET("/Time", sysCtl.Time)
    }
 
    r.GET("/APEs", sysCtl.ApeList)
    r.POST("/APEs", sysCtl.ApeUpdate)
    r.POST("/APEs/:from_id", sysCtl.ApeUpdate)
 
    return r
}