mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-25 07:07:48 +01:00
54 lines
1.3 KiB
Python
54 lines
1.3 KiB
Python
import asyncio
|
|
|
|
from fastapi import APIRouter
|
|
from fastapi.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_cashu")
|
|
|
|
import sys
|
|
|
|
sys.path.append("/Users/cc/git/cashu")
|
|
from cashu.mint.ledger import Ledger
|
|
from .crud import LedgerCrud
|
|
|
|
# db = Database("ext_cashu", LNBITS_DATA_FOLDER)
|
|
|
|
ledger = Ledger(
|
|
db=db,
|
|
# seed=MINT_PRIVATE_KEY,
|
|
seed="asd",
|
|
derivation_path="0/0/0/1",
|
|
crud=LedgerCrud,
|
|
)
|
|
|
|
cashu_ext: APIRouter = APIRouter(prefix="/api/v1/cashu", tags=["cashu"])
|
|
# from cashu.mint.router import router as cashu_router
|
|
|
|
# cashu_ext.include_router(router=cashu_router)
|
|
|
|
cashu_static_files = [
|
|
{
|
|
"path": "/cashu/static",
|
|
"app": StaticFiles(directory="lnbits/extensions/cashu/static"),
|
|
"name": "cashu_static",
|
|
}
|
|
]
|
|
|
|
|
|
def cashu_renderer():
|
|
return template_renderer(["lnbits/extensions/cashu/templates"])
|
|
|
|
|
|
from .tasks import wait_for_paid_invoices, startup_cashu_mint
|
|
from .views import * # noqa
|
|
from .views_api import * # noqa
|
|
|
|
|
|
def cashu_start():
|
|
loop = asyncio.get_event_loop()
|
|
loop.create_task(catch_everything_and_restart(startup_cashu_mint))
|
|
loop.create_task(catch_everything_and_restart(wait_for_paid_invoices))
|