diff --git a/src/main.py b/src/main.py index c220947..5fb6eb3 100644 --- a/src/main.py +++ b/src/main.py @@ -145,7 +145,7 @@ app: FastAPI = FastAPI( redoc_url=None, docs_url=None, lifespan=lifespan, - title='Bitforce. Auth Service', + title='Elcsa. Auth Service', version='1.0.0', description='', license_info={ @@ -207,5 +207,10 @@ async def ping() -> dict[str, str]: 'status': 'ok', } +@app.get('/health') +async def health() -> dict[str, str]: + return { + 'status': 'ok', + } app.openapi = custom_openapi