changed name to myextension

This commit is contained in:
benarc 2024-01-16 16:38:53 +00:00
parent ba7e11e30d
commit 0711f583d6
16 changed files with 221 additions and 225 deletions

View file

@ -6,28 +6,27 @@ from lnbits.db import Database
from lnbits.helpers import template_renderer
from lnbits.tasks import catch_everything_and_restart
db = Database("ext_tempextension")
db = Database("ext_myextension")
temp_ext: APIRouter = APIRouter(
prefix="/temp", tags=["Temp"]
myextension_ext: APIRouter = APIRouter(
prefix="/myextension", tags=["MyExtension"]
)
temp_static_files = [
{
"path": "/temp/static",
"path": "/myextension/static",
"name": "temp_static",
}
]
def temp_renderer():
return template_renderer(["temp/templates"])
def myextension_renderer():
return template_renderer(["myextension/templates"])
from .lnurl import *
from .tasks import wait_for_paid_invoices
from .views import *
from .views_api import *
def temp_start():
loop = asyncio.get_event_loop()
loop.create_task(catch_everything_and_restart(wait_for_paid_invoices))