12 lines
474 B
Python
Executable File
12 lines
474 B
Python
Executable File
from fastapi import APIRouter
|
|
from app.api.v1 import social
|
|
# Később: from app.api.v1 import vehicles, auth
|
|
|
|
api_router = APIRouter()
|
|
|
|
# Social modul becsatolása
|
|
api_router.include_router(social.router, prefix="/social", tags=["Social & Service Providers"])
|
|
|
|
# Placeholders (későbbi fázisokhoz)
|
|
# api_router.include_router(auth.router, prefix="/auth", tags=["Authentication"])
|
|
# api_router.include_router(vehicles.router, prefix="/vehicles", tags=["Fleet Management"]) |