lnbits-legend/lnbits/extensions/ngrok/__init__.py
2021-07-03 15:01:16 +01:00

10 lines
229 B
Python

from quart import Blueprint
from lnbits.db import Database
db = Database("ext_ngrok")
ngrok_ext: Blueprint = Blueprint(
"ngrok", __name__, static_folder="static", template_folder="templates"
)
from .views import * # noqa