2026.06.04 frontend építés közben

This commit is contained in:
Roo
2026-06-04 07:26:22 +00:00
parent 7adf6cc3e3
commit 59a30ac428
3302 changed files with 24091 additions and 1771 deletions

View File

@@ -0,0 +1,12 @@
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"])