/
/
/
1"""Spotify Soloist implementation of the Spotify Connect backend."""
2
3from .backend import (
4 VOLUME_MODE_PLAYER_ONLY,
5 VOLUME_MODE_SYNC_SPOTIFY,
6 SoloistBackend,
7)
8from .prefs import write_audio_prefs
9from .runtime import (
10 BuildExpiredError,
11 ConsentRequiredError,
12 DownloadFailedError,
13 InvalidArchiveError,
14 SoloistBinaryManager,
15 SoloistClient,
16 SoloistError,
17 UnsupportedPlatformError,
18 verify_platform_supported,
19)
20
21__all__ = [
22 "VOLUME_MODE_PLAYER_ONLY",
23 "VOLUME_MODE_SYNC_SPOTIFY",
24 "BuildExpiredError",
25 "ConsentRequiredError",
26 "DownloadFailedError",
27 "InvalidArchiveError",
28 "SoloistBackend",
29 "SoloistBinaryManager",
30 "SoloistClient",
31 "SoloistError",
32 "UnsupportedPlatformError",
33 "verify_platform_supported",
34 "write_audio_prefs",
35]
36