2021-10-29 16:43:26 +01:00
|
|
|
import asyncio
|
|
|
|
|
|
|
|
from fastapi import APIRouter
|
|
|
|
|
|
|
|
from lnbits.db import Database
|
|
|
|
from lnbits.helpers import template_renderer
|
|
|
|
from lnbits.tasks import catch_everything_and_restart
|
|
|
|
|
|
|
|
db = Database("ext_lnaddress")
|
|
|
|
|
2021-11-26 05:58:20 +00:00
|
|
|
lnaddress_ext: APIRouter = APIRouter(prefix="/lnaddress", tags=["lnaddress"])
|
|
|
|
|
2021-10-29 16:43:26 +01:00
|
|
|
|
|
|
|
def lnaddress_renderer():
|
|
|
|
return template_renderer(["lnbits/extensions/lnaddress/templates"])
|
|
|
|
|
|
|
|
|
|
|
|
from .lnurl import * # noqa
|
|
|
|
from .tasks import wait_for_paid_invoices
|
|
|
|
from .views import * # noqa
|
|
|
|
from .views_api import * # noqa
|
|
|
|
|
|
|
|
|
2021-11-24 10:52:34 +00:00
|
|
|
def lnaddress_start():
|
2021-10-29 16:43:26 +01:00
|
|
|
loop = asyncio.get_event_loop()
|
|
|
|
loop.create_task(catch_everything_and_restart(wait_for_paid_invoices))
|