mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2024-11-19 09:54:21 +01:00
10 lines
229 B
Python
10 lines
229 B
Python
from flask import Blueprint
|
|
|
|
|
|
core_app = Blueprint("core", __name__, template_folder="templates", static_folder="static")
|
|
|
|
|
|
from .views.api import * # noqa
|
|
from .views.generic import * # noqa
|
|
from .views.lnurl import * # noqa
|