mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-22 06:21:53 +01:00
9 lines
240 B
Python
9 lines
240 B
Python
from flask import Blueprint
|
|
|
|
|
|
core_app: Blueprint = Blueprint("core", __name__, template_folder="templates", static_folder="static")
|
|
|
|
|
|
from .views.api import * # noqa
|
|
from .views.generic import * # noqa
|
|
from .views.lnurl import * # noqa
|