implement playlist store

This commit is contained in:
cwilvx
2024-07-15 20:11:18 +03:00
parent 88a72763df
commit c8c21dc01a
5 changed files with 127 additions and 81 deletions
+2
View File
@@ -8,6 +8,7 @@ from app.setup.sqlite import run_migrations, setup_sqlite
from app.store.albums import AlbumStore
from app.store.artists import ArtistStore
from app.store.folder import FolderStore
from app.store.playlists import PlaylistStore
from app.store.tracks import TrackStore
from app.utils.generators import get_random_str
from app.config import UserConfig
@@ -49,4 +50,5 @@ def load_into_mem():
TrackStore.load_all_tracks(get_random_str())
AlbumStore.load_albums('a')
ArtistStore.load_artists('a')
PlaylistStore.load_playlists()
FolderStore.load_filepaths()