add missing files + move Monitor class from commands to controllers.

This commit is contained in:
bkfox
2023-06-17 23:57:58 +02:00
parent a7f39c3628
commit 95f5dca683
4 changed files with 345 additions and 273 deletions

View File

@@ -5,6 +5,7 @@ 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()
@@ -19,4 +20,6 @@ __all__ = (
"Source",
"PlaylistSource",
"QueueSource",
"Monitor",
"streamers",
)