新增服务网络建立流程图文档,优化边缘节点和代理服务的注册逻辑

This commit is contained in:
2025-05-13 18:47:30 +08:00
parent 0d40c5aa09
commit 7ffed0f738
4 changed files with 905 additions and 13 deletions

View File

@@ -71,4 +71,9 @@ func ApplyRouters(app *fiber.App) {
// 节点
edge := api.Group("/edge")
edge.Post("/online", handlers.OnlineEdge)
// 临时
app.Get("/test", func(c *fiber.Ctx) error {
return c.JSON(c.GetReqHeaders())
})
}