events/__init__.py
Tiago Vasconcelos 0c371e81df
allow custom path (#17)
* allow custom path

* update to minversion 0.11.0

---------

Co-authored-by: dni  <office@dnilabs.com>
2023-09-25 15:26:13 +01:00

33 lines
720 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_events")
events_ext: APIRouter = APIRouter(prefix="/events", tags=["Events"])
events_static_files = [
{
"path": "/events/static",
"name": "events_static",
}
]
def events_renderer():
return template_renderer(["events/templates"])
from .tasks import wait_for_paid_invoices
from .views import * # noqa: F401,F403
from .views_api import * # noqa: F401,F403
def events_start():
loop = asyncio.get_event_loop()
loop.create_task(catch_everything_and_restart(wait_for_paid_invoices))