lnbits-legend/lnbits/extensions/usermanager/__init__.py
fiatjaf f01028eac7 migrate from flask to quart.
also remove all flaskiness from static file serving.
and reference all vendored scripts on the base tempĺate for simplicity.
2020-09-14 16:03:25 -03:00

8 lines
211 B
Python

from quart import Blueprint
usermanager_ext: Blueprint = Blueprint("usermanager", __name__, static_folder="static", template_folder="templates")
from .views_api import * # noqa
from .views import * # noqa