lnbits-legend/lnbits/core/__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

11 lines
278 B
Python

from quart import Blueprint
core_app: Blueprint = Blueprint(
"core", __name__, template_folder="templates", static_folder="static", static_url_path="/core/static"
)
from .views.api import * # noqa
from .views.generic import * # noqa
from .views.lnurl import * # noqa