32 lines
1.3 KiB
Python
Executable File
32 lines
1.3 KiB
Python
Executable File
from fastapi import APIRouter
|
|
from app.api.v1.endpoints import auth, catalog, assets, organizations, documents, services, admin, expenses, evidence
|
|
|
|
api_router = APIRouter()
|
|
|
|
# Hitelesítés (Authentication)
|
|
api_router.include_router(auth.router, prefix="/auth", tags=["Authentication"])
|
|
|
|
# Szolgáltatások és Vadászat (Service Hunt & Discovery)
|
|
api_router.include_router(services.router, prefix="/services", tags=["Service Hunt & Discovery"])
|
|
|
|
# Katalógus (Vehicle Catalog)
|
|
api_router.include_router(catalog.router, prefix="/catalog", tags=["Vehicle Catalog"])
|
|
|
|
# Eszközök / Járművek (Assets)
|
|
api_router.include_router(assets.router, prefix="/assets", tags=["Assets"])
|
|
|
|
# Szervezetek (Organizations)
|
|
api_router.include_router(organizations.router, prefix="/organizations", tags=["Organizations"])
|
|
|
|
# Dokumentumok (Documents)
|
|
api_router.include_router(documents.router, prefix="/documents", tags=["Documents"])
|
|
|
|
# --- 🛡️ SENTINEL ADMIN KONTROLL PANEL ---
|
|
# Ez a rész tette láthatóvá az Admin API-t a felületen
|
|
api_router.include_router(admin.router, prefix="/admin", tags=["Admin Control Center (Sentinel)"])
|
|
|
|
# Evidence & OCR Robot 3
|
|
api_router.include_router(evidence.router, prefix="/evidence", tags=["Evidence & OCR (Robot 3)"])
|
|
|
|
# Fleet Expenses TCO
|
|
api_router.include_router(expenses.router, prefix="/expenses", tags=["Fleet Expenses (TCO)"]) |