mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-24 06:48:02 +01:00
14 lines
376 B
Python
14 lines
376 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 on_invoice_paid
|
|
|
|
from lnbits.core.tasks import register_invoice_listener
|
|
|
|
register_invoice_listener("lnurlp", on_invoice_paid)
|