The frontends use the new core actor, while the core actor uses the backend. This is a step towards supporting multiple backends, where the core actor will coordinate the backends.
6 lines
231 B
Python
6 lines
231 B
Python
from .actor import Core
|
|
from .current_playlist import CurrentPlaylistController
|
|
from .library import LibraryController
|
|
from .playback import PlaybackController, PlaybackState
|
|
from .stored_playlists import StoredPlaylistsController
|