mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
e3ec9db989
+ break models into separate files + same for the utils and setup
17 lines
298 B
Python
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",
|
|
]
|