Remove deadcode or fix unreachable code

This commit is contained in:
nemunaire 2024-03-12 10:12:05 +01:00
parent e4f404d8d6
commit 3519f7416d
4 changed files with 5 additions and 4 deletions

View file

@ -14,6 +14,7 @@ func declareQARoutes(router *gin.RouterGroup) {
router.POST("/qa/", importExerciceQA)
apiQARoutes := router.Group("/qa/:qid")
apiQARoutes.Use(QAHandler)
apiQARoutes.POST("/comments", importQAComment)
}