10 lines
389 B
Python
Executable File
10 lines
389 B
Python
Executable File
from fastapi import APIRouter
|
|
from app.api.v1.endpoints import auth, catalog # <--- Hozzáadtuk a catalog-ot
|
|
|
|
api_router = APIRouter()
|
|
|
|
# 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"]) |