music-kraken-core/music_kraken/objects/__init__.py

17 lines
512 B
Python
Raw Normal View History

2023-12-19 21:11:46 +00:00
from typing_extensions import TypeVar
2022-12-07 14:51:38 +00:00
2024-06-05 10:05:38 +00:00
from .artwork import ArtworkCollection
2023-05-24 08:12:03 +00:00
from .collection import Collection
from .contact import Contact
2024-06-05 10:05:38 +00:00
from .country import Country
from .formatted_text import FormattedText
from .metadata import ID3Timestamp
from .metadata import Mapping as ID3Mapping
from .metadata import Metadata
from .option import Options
2023-12-29 14:43:33 +00:00
from .parents import OuterProxy
2024-06-05 10:05:38 +00:00
from .song import Album, Artist, Label, Lyrics, Song, Target
from .source import Source, SourceType
2024-04-10 16:18:52 +00:00
DatabaseObject = OuterProxy