This commit is contained in:
Ben Arc
2021-10-12 19:54:35 +01:00
parent 567b8e3c48
commit c749b7d11e
21 changed files with 1872 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
from quart import Blueprint
from lnbits.db import Database
db = Database("ext_copilot")
copilot_ext: Blueprint = Blueprint(
"copilot", __name__, static_folder="static", template_folder="templates"
)
from .views_api import * # noqa
from .views import * # noqa
from .lnurl import * # noqa
from .tasks import register_listeners
from lnbits.tasks import record_async
copilot_ext.record(record_async(register_listeners))