write metadata tests; start source tests

This commit is contained in:
bkfox
2023-06-11 15:10:31 +02:00
parent 257fb6a539
commit cbd28bc946
11 changed files with 241 additions and 342 deletions

View File

@ -1,9 +1,16 @@
# TODO: for the moment, update in station and program names do not update the
# related fields.
from .base import Request
from .metadata import Metadata, Request
from .streamer import Streamer
from .sources import Source, PlaylistSource, QueueSource
__all__ = ("Request", "Streamer", "Source", "PlaylistSource", "QueueSource")
__all__ = (
"Metadata",
"Request",
"Streamer",
"Source",
"PlaylistSource",
"QueueSource",
)