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

10 lines
No EOL
228 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