mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-22 14:22:55 +01:00
makes for a little less black magic and more reasonable use of nurseries and less unnecessary pseudo-requests.
14 lines
360 B
Python
14 lines
360 B
Python
from quart import Blueprint
|
|
|
|
|
|
lnurlp_ext: Blueprint = Blueprint("lnurlp", __name__, static_folder="static", template_folder="templates")
|
|
|
|
|
|
from .views_api import * # noqa
|
|
from .views import * # noqa
|
|
from .lnurl import * # noqa
|
|
from .tasks import register_listeners
|
|
|
|
from lnbits.tasks import record_async
|
|
|
|
lnurlp_ext.record(record_async(register_listeners))
|