mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-23 06:35:23 +01:00
13 lines
245 B
Python
13 lines
245 B
Python
from fastapi.routing import APIRouter
|
|
|
|
from lnbits.db import Database
|
|
|
|
db = Database("database")
|
|
|
|
core_app: APIRouter = APIRouter()
|
|
|
|
from .views.api import * # noqa
|
|
from .views.generic import * # noqa
|
|
from .views.public_api import * # noqa
|
|
|
|
|