feat: multi-robot architecture, car-robot rename, and credit-based OCR logic spec
This commit is contained in:
@@ -1,5 +1,10 @@
|
||||
from fastapi import APIRouter
|
||||
from app.api.v1.endpoints import auth
|
||||
from app.api.v1.endpoints import auth, catalog # <--- Hozzáadtuk a catalog-ot
|
||||
|
||||
api_router = APIRouter()
|
||||
api_router.include_router(auth.router, prefix="/auth", tags=["Authentication"])
|
||||
|
||||
# Autentikáció és KYC végpontok
|
||||
api_router.include_router(auth.router, prefix="/auth", tags=["Authentication"])
|
||||
|
||||
# Jármű Katalógus és Robot kereső végpontok
|
||||
api_router.include_router(catalog.router, prefix="/catalog", tags=["Vehicle Catalog"])
|
||||
Reference in New Issue
Block a user