lnbits-legend/lnbits/extensions/lnurlp/__init__.py

15 lines
360 B
Python
Raw Normal View History

from quart import Blueprint
2020-08-28 23:03:12 -03:00
lnurlp_ext: Blueprint = Blueprint("lnurlp", __name__, static_folder="static", template_folder="templates")
from .views_api import * # noqa
from .views import * # noqa
2020-09-28 00:54:15 -03:00
from .lnurl import * # noqa
from .tasks import register_listeners
2020-09-27 23:12:55 -03:00
from lnbits.tasks import record_async
2020-09-27 23:12:55 -03:00
lnurlp_ext.record(record_async(register_listeners))