mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2024-11-19 18:11:30 +01:00
16 lines
373 B
Python
16 lines
373 B
Python
from fastapi.routing import APIRouter
|
|
|
|
from lnbits.core.models import CoreAppExtra
|
|
from lnbits.db import Database
|
|
|
|
db = Database("database")
|
|
|
|
core_app: APIRouter = APIRouter()
|
|
|
|
core_app_extra: CoreAppExtra = CoreAppExtra()
|
|
|
|
from .views.admin_api import * # noqa
|
|
from .views.api import * # noqa
|
|
from .views.generic import * # noqa
|
|
from .views.public_api import * # noqa
|