| 22 | |
| 23 | |
| 24 | class PluginListResponse(BaseModel): |
| 25 | status: str = Field( |
| 26 | "success", |
| 27 | Literal="success", |
| 28 | description="The status of the response.", |
| 29 | ) |
| 30 | data: List[Dict] = Field( |
| 31 | ..., |
| 32 | description="The list of Plugins.", |
| 33 | # todo: add examples |
| 34 | ) |
| 35 | |
| 36 | |
| 37 | @router.get( |