This commit is contained in:
Mrx
2026-05-23 16:13:30 +08:00
parent effe82ce65
commit e2aab6af71
11 changed files with 695 additions and 9 deletions

View File

@@ -842,6 +842,11 @@ func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
Path: "/app/version",
Handler: app.GetAppVersionHandler(serverCtx),
},
{
Method: http.MethodGet,
Path: "/app/home/dynamic",
Handler: app.GetHomeDynamicDataHandler(serverCtx),
},
{
// 心跳检测接口
Method: http.MethodGet,