blesko initial commit

This commit is contained in:
Tiago vasconcelos
2021-10-26 16:48:04 +01:00
parent 55023fa85b
commit 4653e81695
15 changed files with 1440 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
from quart import Blueprint
from lnbits.db import Database
db = Database("ext_bleskomat")
bleskomat_ext: Blueprint = Blueprint(
"bleskomat", __name__, static_folder="static", template_folder="templates"
)
from .lnurl_api import * # noqa
from .views_api import * # noqa
from .views import * # noqa