| 16 | |
| 17 | |
| 18 | class BundleListResponse(BaseModel): |
| 19 | status: str = Field( |
| 20 | "success", |
| 21 | Literal="success", |
| 22 | description="The status of the response.", |
| 23 | ) |
| 24 | data: List[Dict] = Field( |
| 25 | ..., |
| 26 | description="The list of bundles.", |
| 27 | ) |
| 28 | |
| 29 | |
| 30 | @router.get( |
no outgoing calls
no test coverage detected