- 添加个人客户微信登录和手机验证码登录接口 - 实现个人客户设备、ICCID、手机号关联管理 - 添加短信发送服务(HTTP 客户端) - 添加微信认证服务(含 mock 实现) - 添加 JWT Token 生成和验证工具 - 创建数据库迁移脚本(personal_customer 关联表) - 修复测试文件中的路由注册参数错误 - 重构 scripts 目录结构(分离独立脚本到子目录) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
25 lines
704 B
Go
25 lines
704 B
Go
package routes
|
|
|
|
import (
|
|
"github.com/gofiber/fiber/v2"
|
|
|
|
"github.com/break/junhong_cmp_fiber/internal/bootstrap"
|
|
)
|
|
|
|
// RegisterRoutes 路由注册总入口
|
|
// 按业务模块调用各自的路由注册函数
|
|
func RegisterRoutes(app *fiber.App, handlers *bootstrap.Handlers, middlewares *bootstrap.Middlewares) {
|
|
// 1. 全局路由
|
|
registerHealthRoutes(app)
|
|
|
|
// 2. Admin 域 (挂载在 /api/admin)
|
|
adminGroup := app.Group("/api/admin")
|
|
RegisterAdminRoutes(adminGroup, handlers, nil, "/api/admin")
|
|
|
|
// 任务相关路由 (归属于 Admin 域)
|
|
registerTaskRoutes(adminGroup)
|
|
|
|
// 3. 个人客户路由 (挂载在 /api/c/v1)
|
|
RegisterPersonalCustomerRoutes(app, handlers, middlewares.PersonalAuth)
|
|
}
|