added tasks to make tickets

This commit is contained in:
ben
2022-11-11 23:46:22 +00:00
parent 2cbbea06e3
commit 029e8baf53
3 changed files with 55 additions and 5 deletions
+10
View File
@@ -1,7 +1,11 @@
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_events")
@@ -13,5 +17,11 @@ def events_renderer():
return template_renderer(["lnbits/extensions/events/templates"])
from .tasks import wait_for_paid_invoices
from .views import * # noqa
from .views_api import * # noqa
def events_start():
loop = asyncio.get_event_loop()
loop.create_task(catch_everything_and_restart(wait_for_paid_invoices))