19 lines
467 B
Python
19 lines
467 B
Python
import logging
|
|
|
|
import pykka
|
|
|
|
from mopidy import backend
|
|
from mopidy.file import library
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class FileBackend(pykka.ThreadingActor, backend.Backend):
|
|
uri_schemes = ["file"]
|
|
|
|
def __init__(self, config, audio):
|
|
super().__init__()
|
|
self.library = library.FileLibraryProvider(backend=self, config=config)
|
|
self.playback = backend.PlaybackProvider(audio=audio, backend=self)
|
|
self.playlists = None
|