From 7fe601901e27bcca58af12ef37bb2c8b6297d1ac Mon Sep 17 00:00:00 2001 From: dev1lfreak Date: Mon, 29 Jun 2026 10:37:59 +0300 Subject: [PATCH] fix: rollback in release --- src/main.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) 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', - }