feat: implement public librespot api class, see docs
This commit is contained in:
23
deezspot/models/librespot/__init__.py
Normal file
23
deezspot/models/librespot/__init__.py
Normal file
@@ -0,0 +1,23 @@
|
||||
#!/usr/bin/python3
|
||||
|
||||
from .types import Image, ExternalUrls, ArtistRef, AlbumRef
|
||||
from .track import Track
|
||||
from .album import Album
|
||||
from .playlist import Playlist, PlaylistItem, TrackStub, TracksPage, Owner, UserMini
|
||||
from .artist import Artist
|
||||
|
||||
__all__ = [
|
||||
"Image",
|
||||
"ExternalUrls",
|
||||
"ArtistRef",
|
||||
"AlbumRef",
|
||||
"Track",
|
||||
"Album",
|
||||
"Playlist",
|
||||
"PlaylistItem",
|
||||
"TrackStub",
|
||||
"TracksPage",
|
||||
"Owner",
|
||||
"UserMini",
|
||||
"Artist",
|
||||
]
|
||||
Reference in New Issue
Block a user