Reformats Code

This commit is contained in:
2024-05-21 19:25:44 -03:00
parent 0acf167d12
commit a1077e812f
9 changed files with 26 additions and 26 deletions

View File

@@ -1,14 +1,15 @@
from fastapi.exceptions import RequestValidationError
from starlette.responses import JSONResponse
from storage_service.config.config_allowed_origins import get_allowed_origins
from storage_service.controller.health_checker_controller import health_router
from storage_service.controller.storage_controller import s3_router
from storage_service.utils.exception_handler import (
http_exception_handler,
validation_exception_handler,
)
from fastapi import FastAPI, HTTPException
from fastapi.exceptions import RequestValidationError
from fastapi.middleware.cors import CORSMiddleware
from storage_service.utils.exception_handler import http_exception_handler, validation_exception_handler
from starlette.responses import JSONResponse
app = FastAPI()