feat: 完成后台Issue#6 数据统计接口模块

This commit is contained in:
root
2026-03-09 19:26:07 +08:00
parent 54cf7ea37f
commit bd1e644ef5
3 changed files with 230 additions and 0 deletions
+4
View File
@@ -20,6 +20,10 @@ func registerAdminRoutes(router *gin.Engine, handler *adminhandler.Handler) {
{
protected.GET("/profile", handler.Profile)
protected.POST("/logout", handler.Logout)
protected.GET("/stats/overview", handler.StatsOverview)
protected.GET("/stats/mini-programs", handler.StatsMiniPrograms)
protected.GET("/stats/user-growth", handler.StatsUserGrowth)
}
}
}