mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-25 15:10:41 +01:00
16 lines
325 B
Python
16 lines
325 B
Python
|
from fastapi import APIRouter
|
||
|
|
||
|
from lnbits.db import Database
|
||
|
from lnbits.helpers import template_renderer
|
||
|
|
||
|
db = Database("ext_deezy")
|
||
|
|
||
|
deezy_ext: APIRouter = APIRouter(prefix="/deezy", tags=["deezy"])
|
||
|
|
||
|
|
||
|
def deezy_renderer():
|
||
|
return template_renderer(["lnbits/extensions/deezy/templates"])
|
||
|
|
||
|
|
||
|
from .views import * # noqa
|