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
|
2023-09-12 16:50:32 +00:00
|
|
|
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
|
|
|
|
2024-05-13 16:03:20 +00:00
|
|
|
DatabaseObject = OuterProxy
|