Refactor config and setup (#309)
authorMarcel van der Veldt <m.vanderveldt@outlook.com>
Thu, 12 May 2022 00:07:14 +0000 (02:07 +0200)
committerGitHub <noreply@github.com>
Thu, 12 May 2022 00:07:14 +0000 (02:07 +0200)
commiteae7edc37588616014f50da912b18a70e3cce893
treeceebe663a902619b3f36414ad06ab247cbc09073
parent0b70a7ae8db49722e563be54425ab2fbd7c7c916
Refactor config and setup (#309)

* Allow sync to be started manually
33 files changed:
examples/full.py
music_assistant/controllers/music/__init__.py
music_assistant/controllers/music/providers/__init__.py [new file with mode: 0644]
music_assistant/controllers/music/providers/filesystem.py [new file with mode: 0644]
music_assistant/controllers/music/providers/librespot/linux/librespot-aarch64 [new file with mode: 0755]
music_assistant/controllers/music/providers/librespot/linux/librespot-arm [new file with mode: 0755]
music_assistant/controllers/music/providers/librespot/linux/librespot-armhf [new file with mode: 0755]
music_assistant/controllers/music/providers/librespot/linux/librespot-armv7 [new file with mode: 0755]
music_assistant/controllers/music/providers/librespot/linux/librespot-x86_64 [new file with mode: 0755]
music_assistant/controllers/music/providers/librespot/osx/librespot [new file with mode: 0755]
music_assistant/controllers/music/providers/librespot/windows/librespot.exe [new file with mode: 0755]
music_assistant/controllers/music/providers/qobuz.py [new file with mode: 0644]
music_assistant/controllers/music/providers/spotify.py [new file with mode: 0644]
music_assistant/controllers/music/providers/tunein.py [new file with mode: 0644]
music_assistant/controllers/stream.py
music_assistant/helpers/database.py
music_assistant/helpers/util.py
music_assistant/mass.py
music_assistant/models/config.py [new file with mode: 0644]
music_assistant/models/enums.py
music_assistant/models/provider.py
music_assistant/providers/__init__.py [deleted file]
music_assistant/providers/filesystem.py [deleted file]
music_assistant/providers/qobuz.py [deleted file]
music_assistant/providers/spotify/__init__.py [deleted file]
music_assistant/providers/spotify/librespot/linux/librespot-aarch64 [deleted file]
music_assistant/providers/spotify/librespot/linux/librespot-arm [deleted file]
music_assistant/providers/spotify/librespot/linux/librespot-armhf [deleted file]
music_assistant/providers/spotify/librespot/linux/librespot-armv7 [deleted file]
music_assistant/providers/spotify/librespot/linux/librespot-x86_64 [deleted file]
music_assistant/providers/spotify/librespot/osx/librespot [deleted file]
music_assistant/providers/spotify/librespot/windows/librespot.exe [deleted file]
music_assistant/providers/tunein.py [deleted file]