add hivemind placeholder extension.

This commit is contained in:
fiatjaf
2021-07-03 17:56:55 -03:00
parent 5ac81a7849
commit 81e3424232
7 changed files with 88 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
from quart import Blueprint
from lnbits.db import Database
db = Database("ext_hivemind")
hivemind_ext: Blueprint = Blueprint(
"hivemind", __name__, static_folder="static", template_folder="templates"
)
from .views import * # noqa