| 18 | |
| 19 | |
| 20 | class QueueStatusAPI(BaseModel): |
| 21 | limit: Optional[int] = Field(title="Limit", description="The maximum number of tasks to return", default=20) |
| 22 | offset: Optional[int] = Field(title="Offset", description="The offset of the tasks to return", default=0) |
| 23 | |
| 24 | |
| 25 | class TaskModel(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected