More skeleton

This commit is contained in:
Tiago Vasconcelos 2023-02-27 18:32:13 +00:00
parent cc65c91726
commit 702b67ad66
4 changed files with 66 additions and 302 deletions

38
__init__.py Normal file
View file

@ -0,0 +1,38 @@
import asyncio
from fastapi import APIRouter
from starlette.staticfiles import StaticFiles
from lnbits.db import Database
from lnbits.helpers import template_renderer
from lnbits.tasks import catch_everything_and_restart
db = Database("ext_nostrmarket")
market_ext: APIRouter = APIRouter(prefix="/nostrmarket", tags=["nostrmarket"])
market_static_files = [
{
"path": "/nostrmarket/static",
"app": StaticFiles(directory="lnbits/extensions/nostrmarket/static"),
"name": "nostrmarket_static",
}
]
def market_renderer():
return template_renderer(["lnbits/extensions/nostrmarket/templates"])
scheduled_tasks: List[asyncio.Task] = []
from .tasks import subscribe_nostrclient_ws, wait_for_paid_invoices
from .views import * # noqa
from .views_api import * # noqa
def nostrmarket_start():
loop = asyncio.get_event_loop()
task1 = loop.create_task(catch_everything_and_restart(wait_for_paid_invoices))
task2 = loop.create_task(catch_everything_and_restart(subscribe_nostrclient_ws))
scheduled_tasks.append([task1, task2])