feat(expiry): 完成 #20 模块目录与健康路由

This commit is contained in:
root
2026-03-04 17:06:26 +08:00
parent fe9f64f51d
commit f092019c61
7 changed files with 109 additions and 1 deletions
+19
View File
@@ -0,0 +1,19 @@
package routes
import (
"github.com/gin-gonic/gin"
expiryhandler "wx_service/internal/expiry"
)
func registerExpiryRoutes(protected *gin.RouterGroup, expiryHandler *expiryhandler.Handler) {
if expiryHandler == nil {
return
}
// 后续 issue 会补齐完整的物品/设置接口。
expiry := protected.Group("")
{
_ = expiry
}
}