diff --git a/src/main.py b/src/main.py index bda7a5c..1cc40a9 100644 --- a/src/main.py +++ b/src/main.py @@ -91,7 +91,7 @@ app: FastAPI = FastAPI( redoc_url=None, docs_url=None, lifespan=lifespan, - title='Elcsa. Auth Service', + title='Bitforce. Auth Service', version='1.0.0', description='', license_info={ @@ -152,9 +152,3 @@ async def ping() -> dict[str, str]: 'message': 'pong', 'status': 'ok', } - -@app.get('/health') -async def health() -> dict[str, str]: - return { - 'status': 'ok', - }