mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-24 22:58:46 +01:00
also remove all flaskiness from static file serving. and reference all vendored scripts on the base tempĺate for simplicity.
11 lines
278 B
Python
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
|