fix: rollback in release

This commit is contained in:
2026-06-29 10:37:59 +03:00
parent 3fa23bed86
commit 7fe601901e

View File

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