write tests for serializers; add controllers.streamers + tests

This commit is contained in:
bkfox
2023-06-17 17:09:43 +02:00
parent 3d76b656d2
commit a7f39c3628
7 changed files with 360 additions and 93 deletions

View File

@ -3,13 +3,19 @@
from .metadata import Metadata, Request
from .streamer import Streamer
from .streamers import Streamers
from .sources import Source, PlaylistSource, QueueSource
streamers = Streamers()
"""Default controller used by views and viewsets."""
__all__ = (
"Metadata",
"Request",
"Streamer",
"Streamers",
"Source",
"PlaylistSource",
"QueueSource",