swingmusic/app/models/__init__.py
geoffrey45 e3ec9db989 add method and route to search across tracks, albums and artists.
+ break models into separate files
+ same for the utils and setup
2023-03-09 13:08:50 +03:00

17 lines
298 B
Python

from .album import Album
from .track import Track
from .artist import Artist, ArtistMinimal
from .enums import FavType
from .playlist import Playlist
from .folder import Folder
__all__ = [
"Album",
"Track",
"Artist",
"ArtistMinimal",
"Playlist",
"Folder",
"FavType",
]