Faizan Munsaf
Results
1
comments of
Faizan Munsaf
hey Please choose this format Here is **main.py** ``` from app.infrastructure.exception import validation_exception_handler app = FastAPI( title=settings.PROJECT_NAME, openapi_url=f"{settings.API_V1_STR}openapi.json" ) @app.exception_handler(RequestValidationError) async def custom_validation_exception_handler(request, exc): return await validation_exception_handler(request, exc) ``` Here...