forked from rc/aircox
- Writes tests for aircox streamer application; - Add test utilities in aircox Co-authored-by: bkfox <thomas bkfox net> Reviewed-on: rc/aircox#110
This commit is contained in:
25
aircox_streamer/controllers/__init__.py
Normal file
25
aircox_streamer/controllers/__init__.py
Normal file
@ -0,0 +1,25 @@
|
||||
# TODO: for the moment, update in station and program names do not update the
|
||||
# related fields.
|
||||
|
||||
from .metadata import Metadata, Request
|
||||
from .streamer import Streamer
|
||||
from .streamers import Streamers
|
||||
from .sources import Source, PlaylistSource, QueueSource
|
||||
from .monitor import Monitor
|
||||
|
||||
|
||||
streamers = Streamers()
|
||||
"""Default controller used by views and viewsets."""
|
||||
|
||||
|
||||
__all__ = (
|
||||
"Metadata",
|
||||
"Request",
|
||||
"Streamer",
|
||||
"Streamers",
|
||||
"Source",
|
||||
"PlaylistSource",
|
||||
"QueueSource",
|
||||
"Monitor",
|
||||
"streamers",
|
||||
)
|
Reference in New Issue
Block a user