Initial commit - Migrated to Dev environment

This commit is contained in:
2026-02-03 19:55:45 +00:00
commit a34e5b7976
3518 changed files with 481663 additions and 0 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"])