Files
eventspace/backend/app/api/router.py
Felipe Cardoso 2993d0942c
All checks were successful
Build and Push Docker Images / changes (push) Successful in 4s
Build and Push Docker Images / build-backend (push) Successful in 51s
Build and Push Docker Images / build-frontend (push) Has been skipped
Add presigned URL and file upload functionality
Implemented endpoints for generating presigned URLs and handling file uploads. Added corresponding test cases to ensure proper functionality and error handling. Updated the main router to include the new uploads API.
2025-03-12 18:59:39 +01:00

14 lines
542 B
Python

from fastapi import APIRouter
from app.api.routes import auth
from app.api.routes import event_themes
from app.api.routes.events import router as events
from app.api.routes import uploads
api_router = APIRouter()
api_router.include_router(auth.router, prefix="/auth", tags=["auth"])
api_router.include_router(event_themes.router, prefix="/event_themes", tags=["event_themes"])
api_router.include_router(events.events_router, prefix="/events", tags=["events"])
api_router.include_router(uploads.router, prefix="/uploads", tags=["uploads"])