/
/
/
1"""
2MusicAssistant Player Queues Controller.
3
4Handles all logic to PLAY Media Items, provided by Music Providers to supported players.
5
6It is loosely coupled to the MusicAssistant Music Controller and Player Controller.
7A Music Assistant Player always has a queue associated with it. The server holds the full queue
8state in a `PlayerQueueData` record; the wire-facing `PlayerQueue` snapshot (the simplified view
9shared with API clients) is normally the player's active source, but it can also be something else,
10hence the loose coupling.
11"""
12
13from __future__ import annotations
14
15from .controller import PlayerQueuesController
16
17__all__ = ["PlayerQueuesController"]
18