Files
eventspace/backend/app/api/main.py
Felipe Cardoso b3a4c45202 Add event themes API routes for CRUD operations
Implemented API endpoints for creating, reading, updating, and listing event themes. Integrated the new routes into the FastAPI application router under the '/event_themes' prefix.
2025-03-05 12:42:00 +01:00

8 lines
292 B
Python

from fastapi import APIRouter
from app.api.routes import auth
from app.api.routes import event_themes
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"])