mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-24 06:48:02 +01:00
15 lines
317 B
Python
15 lines
317 B
Python
from fastapi import APIRouter
|
|
|
|
from lnbits.db import Database
|
|
from lnbits.helpers import template_renderer
|
|
|
|
db = Database("ext_ngrok")
|
|
|
|
ngrok_ext: APIRouter = APIRouter(prefix="/ngrok", tags=["ngrok"])
|
|
|
|
|
|
def ngrok_renderer():
|
|
return template_renderer(["lnbits/extensions/ngrok/templates"])
|
|
|
|
|
|
from .views import *
|