mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-23 22:47:05 +01:00
11 lines
243 B
Python
11 lines
243 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
|