Coverage for app/endpoint/health/get_health.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.8.2, created at 2025-06-16 01:07 +0000

1from app.endpoint.health.router import router 

2 

3@router.get( 

4 "/health" 

5) 

6async def get_health(): 

7 return {"status": "green"}