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
+14
View File
@@ -0,0 +1,14 @@
package plant
import (
"github.com/gin-gonic/gin"
)
type CallbackRouter struct{}
func (s *CallbackRouter) InitCallbackRouter(Router *gin.RouterGroup) {
callbackRouter := Router.Group("callback")
{
callbackRouter.POST("mediaCheck", callbackApi.MediaCheckCallback) // 接收微信媒体检测回调
}
}