feat: regression

This commit is contained in:
2025-08-04 10:46:44 +08:00
parent 2aa22b1385
commit b00767dfcd
6 changed files with 655 additions and 2 deletions

View File

@ -27,6 +27,7 @@ func SetupRouter() *gin.Engine {
steps.POST("", stepTrainController.CreateTrainingRecord)
steps.GET("train-records", stepTrainController.GetTrainingRecords)
steps.GET("train-data/:trainId", stepTrainController.GetTrainingRecordByTrainId)
steps.GET("train-rank/:trainId", stepTrainController.GetTrainingRank)
// 可扩展其他路由GET, PUT, DELETE等
}
auth := v1.Group("/auth")