Add caching for lrclib lyrics

This commit is contained in:
jojii
2025-02-05 19:42:22 +01:00
parent a8cae47f61
commit 29b04778f1
5 changed files with 93 additions and 11 deletions
+4 -4
View File
@@ -150,10 +150,10 @@ type PlaylistWithTracks struct {
}
type Lyrics struct {
Title string
Artist string
Synced bool
Lines []LyricLine
Title string `json:"title"`
Artist string `json:"artist"`
Synced bool `json:"synced"`
Lines []LyricLine `json:"lines"`
}
type LyricLine struct {