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
+25
View File
@@ -71,6 +71,31 @@ paths:
summary: List all artists
tags:
- artist
/artists/:id:
get:
parameters:
- description: Artist ID (UUID)
in: path
name: id
required: true
type: string
produces:
- application/json
responses:
"200":
description: OK
schema:
items:
additionalProperties: true
type: object
type: array
"500":
description: Internal Server Error
schema:
$ref: '#/definitions/handlers.ErrorResponse'
summary: List artist by ID
tags:
- artist
/users/{id}:
get:
parameters: