mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-24 06:48:02 +01:00
33 lines
750 B
Python
33 lines
750 B
Python
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_lnticket")
|
|
|
|
lnticket_ext: APIRouter = APIRouter(
|
|
prefix="/lnticket",
|
|
tags=["LNTicket"]
|
|
# "lnticket", __name__, static_folder="static", template_folder="templates"
|
|
)
|
|
|
|
def lnticket_renderer():
|
|
return template_renderer(
|
|
[
|
|
"lnbits/extensions/lnticket/templates",
|
|
]
|
|
)
|
|
|
|
|
|
from .views_api import * # noqa
|
|
from .views import * # noqa
|
|
from .tasks import wait_for_paid_invoices
|
|
|
|
|
|
def lnticket_start():
|
|
loop = asyncio.get_event_loop()
|
|
loop.create_task(catch_everything_and_restart(wait_for_paid_invoices))
|
|
|