lnbits-legend/lnbits/core/__init__.py

16 lines
371 B
Python
Raw Normal View History

from quart import Blueprint
core_app: Blueprint = Blueprint(
"core", __name__, template_folder="templates", static_folder="static", static_url_path="/core/static"
)
2020-03-08 23:00:41 +01:00
from .views.api import * # noqa
from .views.generic import * # noqa
from .tasks import register_listeners
from lnbits.tasks import record_async
core_app.record(record_async(register_listeners))