Implement artist GetByID

This commit is contained in:
zardzul
2026-03-14 20:00:36 +01:00
parent d5e608feeb
commit 6bff66b31b
6 changed files with 134 additions and 0 deletions
+1
View File
@@ -35,5 +35,6 @@ func Routes(router *gin.Engine, userHandler *handlers.UserHandler, artistHandler
artist.Use(middleware.JWTAuth(jwtSecret))
{
artist.GET("/", artistHandler.GetAll)
artist.GET("/:id", artistHandler.GetByID)
}
}