16 lines
591 B
Python
Executable File
16 lines
591 B
Python
Executable File
from fastapi import APIRouter
|
|
from app.api.v1.endpoints import auth, catalog, assets, organizations
|
|
|
|
api_router = APIRouter()
|
|
|
|
# Felhasználó és Identitás
|
|
api_router.include_router(auth.router, prefix="/auth", tags=["Authentication"])
|
|
|
|
# Katalógus és Jármű Robotok
|
|
api_router.include_router(catalog.router, prefix="/catalog", tags=["Vehicle Catalog"])
|
|
|
|
# Egyedi Eszközök (Assets)
|
|
api_router.include_router(assets.router, prefix="/assets", tags=["Assets"])
|
|
|
|
# Szervezetek és Onboarding
|
|
api_router.include_router(organizations.router, prefix="/organizations", tags=["Organizations"]) |