mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
Restyle Save complete albums to the db for faster startup (#38)
This commit is contained in:
@@ -1,11 +1,14 @@
|
||||
"""
|
||||
All the MongoDB instances are created here.
|
||||
"""
|
||||
|
||||
from app.db import artists, albums, trackcolors, tracks, playlists
|
||||
from app.db import albums
|
||||
from app.db import artists
|
||||
from app.db import playlists
|
||||
from app.db import trackcolors
|
||||
from app.db import tracks
|
||||
|
||||
tracks_instance = tracks.AllSongs()
|
||||
artist_instance = artists.Artists()
|
||||
track_color_instance = trackcolors.TrackColors()
|
||||
album_instance = albums.Albums()
|
||||
playlist_instance = playlists.Playlists()
|
||||
playlist_instance = playlists.Playlists()
|
||||
|
||||
Reference in New Issue
Block a user