mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
add method and route to search across tracks, albums and artists.
+ break models into separate files + same for the utils and setup
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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",
|
||||
]
|
||||
Reference in New Issue
Block a user