23 lines
478 B
Python
23 lines
478 B
Python
# 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
|
|
|
|
|
|
streamers = Streamers()
|
|
"""Default controller used by views and viewsets."""
|
|
|
|
|
|
__all__ = (
|
|
"Metadata",
|
|
"Request",
|
|
"Streamer",
|
|
"Streamers",
|
|
"Source",
|
|
"PlaylistSource",
|
|
"QueueSource",
|
|
)
|