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.
8 lines
292 B
Python
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"])
|