18 lines
519 B
Python
18 lines
519 B
Python
from storage_service.controller import health_router, storage_router
|
|
from storage_service.utils.exception_handler import (
|
|
http_exception_handler,
|
|
validation_exception_handler,
|
|
)
|
|
|
|
from fastapi import FastAPI, HTTPException
|
|
from fastapi.exceptions import RequestValidationError
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
app.add_exception_handler(HTTPException, http_exception_handler)
|
|
app.add_exception_handler(RequestValidationError, validation_exception_handler)
|
|
|
|
app.include_router(storage_router)
|
|
app.include_router(health_router)
|