2021-10-29 16:43:26 +01:00
|
|
|
import asyncio
|
|
|
|
|
|
|
|
from fastapi import APIRouter
|
2022-12-31 01:46:55 +00:00
|
|
|
from starlette.staticfiles import StaticFiles
|
2021-10-29 16:43:26 +01:00
|
|
|
|
|
|
|
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"])
|
|
|
|
|
2022-12-31 01:46:55 +00:00
|
|
|
lnaddress_static_files = [
|
|
|
|
{
|
|
|
|
"path": "/lnaddress/static",
|
|
|
|
"app": StaticFiles(directory="lnbits/extensions/lnaddress/static"),
|
|
|
|
"name": "lnaddress_static",
|
|
|
|
}
|
|
|
|
]
|
2021-10-29 16:43:26 +01:00
|
|
|
|
2022-12-31 14:15:23 +00:00
|
|
|
|
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))
|