started working on subdomains extension

This commit is contained in:
Kristjan
2020-12-28 19:51:45 +01:00
parent 1c922a5ddc
commit 3c398a8276
8 changed files with 489 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
from quart import Blueprint
from lnbits.db import Database
db = Database("ext_subdomains")
subdomains_ext: Blueprint = Blueprint("subdomains", __name__, static_folder="static", template_folder="templates")
from .views_api import * # noqa
from .views import * # noqa