rewrite album and artist stores using in-mem hashmap stores

This commit is contained in:
cwilvx
2024-07-15 00:26:56 +03:00
parent 83e105a198
commit 58c90d95b1
11 changed files with 297 additions and 237 deletions
+1 -1
View File
@@ -36,7 +36,6 @@ class Artist:
Artist class
"""
id: str
name: str
albumcount: int
artisthash: str
@@ -53,6 +52,7 @@ class Artist:
playduration: int
extra: dict
id: int = -1
image: str = ""
def __post_init__(self):