mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-24 22:58:46 +01:00
29 lines
738 B
Python
29 lines
738 B
Python
import asyncio
|
|
from fastapi import APIRouter, FastAPI
|
|
from fastapi.staticfiles import StaticFiles
|
|
from starlette.routing import Mount
|
|
from lnbits.db import Database
|
|
from lnbits.helpers import template_renderer
|
|
from lnbits.tasks import catch_everything_and_restart
|
|
|
|
db = Database("ext_satsdice")
|
|
|
|
satsdice_ext: APIRouter = APIRouter(prefix="/satsdice", tags=["satsdice"])
|
|
|
|
|
|
def satsdice_renderer():
|
|
return template_renderer(
|
|
[
|
|
"lnbits/extensions/satsdice/templates",
|
|
]
|
|
)
|
|
|
|
|
|
from .views_api import * # noqa
|
|
from .views import * # noqa
|
|
from .lnurl import * # noqa
|
|
|
|
|
|
# def satsdice_start():
|
|
# loop = asyncio.get_event_loop()
|
|
# loop.create_task(catch_everything_and_restart(wait_for_paid_invoices))
|