feat: add coverart support

This commit is contained in:
Max Goltzsche 2024-03-27 00:26:05 +01:00
parent 4bc641e95a
commit fa3b21216d
No known key found for this signature in database
GPG key ID: 364FA5A62B410BA4
3 changed files with 105 additions and 1 deletions

View file

@ -27,5 +27,10 @@ class SubidyExtension(ext.Extension):
def setup(self, registry):
from .backend import SubidyBackend
from .web import image_proxy_factory
registry.add("backend", SubidyBackend)
registry.add("http:app", {
"name": self.ext_name,
"factory": image_proxy_factory,
})