Lars Noack
da8887b279
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
28 lines
494 B
Python
28 lines
494 B
Python
from typing_extensions import TypeVar
|
|
from .option import Options
|
|
|
|
from .metadata import Metadata, Mapping as ID3Mapping, ID3Timestamp
|
|
|
|
from .source import Source, SourceType
|
|
|
|
from .song import (
|
|
Song,
|
|
Album,
|
|
Artist,
|
|
Target,
|
|
Lyrics,
|
|
Label
|
|
)
|
|
|
|
from .formatted_text import FormattedText
|
|
from .collection import Collection
|
|
|
|
from .country import Country
|
|
from .contact import Contact
|
|
|
|
from .parents import OuterProxy
|
|
|
|
from .artwork import Artwork
|
|
|
|
DatabaseObject = OuterProxy
|