mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-20 09:50:30 +00:00

- refactor function locations - add logger - check for new tracks instead of re-processing all files
11 lines
316 B
Python
11 lines
316 B
Python
"""
|
|
All the MongoDB instances are created here.
|
|
"""
|
|
|
|
from app.db import artists, albums, trackcolors, tracks, playlists
|
|
|
|
tracks_instance = tracks.AllSongs()
|
|
artist_instance = artists.Artists()
|
|
track_color_instance = trackcolors.TrackColors()
|
|
album_instance = albums.Albums()
|
|
playlist_instance = playlists.Playlists() |