Get metadata for an installed workflow.
(self, workflow_id: str)
| 109 | return False |
| 110 | |
| 111 | def get(self, workflow_id: str) -> dict[str, Any] | None: |
| 112 | """Get metadata for an installed workflow.""" |
| 113 | return self.data["workflows"].get(workflow_id) |
| 114 | |
| 115 | def list(self) -> dict[str, dict[str, Any]]: |
| 116 | """Return all installed workflows.""" |