mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-03-04 01:53:59 +01:00
9 lines
162 B
Python
9 lines
162 B
Python
|
from flask import Blueprint
|
||
|
|
||
|
|
||
|
core_app = Blueprint("core", __name__, template_folder="templates")
|
||
|
|
||
|
|
||
|
from .views_api import * # noqa
|
||
|
from .views import * # noqa
|