feat: Add callback and exchange features, refactor care plan task generation logic, and update wiki ordering to prioritize hot items.

This commit is contained in:
Blizzard
2026-02-26 08:57:13 +08:00
parent 9d4a5c6375
commit 3f05dccdce
23 changed files with 955 additions and 56 deletions
+2
View File
@@ -13,6 +13,7 @@ type RouterGroup struct {
BadgeConfigRouter
UserProfileRouter
CallbackRouter
ExchangeRouter
}
// 初始化路由
@@ -27,4 +28,5 @@ var (
userProfileApi = v1.ApiGroupApp.PlantApiGroup.UserProfileApi
badgeConfigApi = v1.ApiGroupApp.PlantApiGroup.BadgeConfigApi
callbackApi = v1.ApiGroupApp.PlantApiGroup.CallbackApi
exchangeApi = v1.ApiGroupApp.PlantApiGroup.ExchangeApi
)