Add image url for artists

This commit is contained in:
Esa Kataja
2025-05-16 18:31:47 +03:00
parent 2cb255b538
commit ec11b04247
4 changed files with 47 additions and 15 deletions
+4
View File
@@ -15,6 +15,10 @@ class Song(BaseModel):
running_order: int | None = Field(
default=None, description="Running order of the song.", example=13
)
img_url: str = Field(
description="URL to the artist image.",
example="https://www.youtube.com/watch?v=dQw4w9WgXcQ",
)
lyrics_url: str | None = Field(
default=None,
description="URL to the original lyrics.",