Coverage for app/schemas/check.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.14.1, created at 2026-06-16 20:06 +0000

1from pydantic import BaseModel, Field 

2 

3from app.schemas.probe import ProbeResponse 

4 

5 

6class CheckResponse(BaseModel): 

7 probes: list[ProbeResponse] = Field(..., description="List of all probes")