From 3a0ced9632110e2abd01daef2586699d9f6770ee Mon Sep 17 00:00:00 2001 From: Julian Mutter Date: Thu, 2 Jul 2026 22:40:29 +0200 Subject: [PATCH] remove unncecessary comments --- src/routes/routes.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/routes/routes.go b/src/routes/routes.go index 7fa9ca1..9058200 100644 --- a/src/routes/routes.go +++ b/src/routes/routes.go @@ -21,22 +21,18 @@ func SetupRoutes(r *gin.Engine) { api := r.Group("/api") api.Use(middleware.AuthMiddleware()) { - // Health check for connection testing api.GET("/health", handlers.HealthCheck) - // Sheets endpoints sheets := api.Group("/sheets") { sheets.POST("/upload", handlers.UploadSheet) sheets.GET("/list", handlers.ListSheets) sheets.GET("/get/:uuid", handlers.DownloadSheet) - // Annotations endpoints (nested under sheets) sheets.GET("/:uuid/annotations", handlers.GetAnnotations) sheets.POST("/:uuid/annotations", handlers.UpdateAnnotation) } - // Composers endpoints composers := api.Group("/composers") { composers.POST("/add", handlers.AddComposer)