change trustie to gitlink

This commit is contained in:
zhangxunhui 2023-03-02 15:32:30 +08:00
parent 2b9f936d25
commit 0c0f1ccb82
1 changed files with 2 additions and 2 deletions

View File

@ -21,10 +21,10 @@ func RegisterRoutes(m *macaron.Macaron) {
m.Get("/", func(ctx *macaron.Context) {
ctx.JSON(200, "hello world")
})
});
// 统一路由入口
m.Group("/trustie", func() {
m.Group("/gitlink", func() {
m.Post("/fiscobcos", bind(api.FiscoBcos{}), fiscobcos.HandleAllRoutes)
})
}