Return all installed workflows.
(self)
| 113 | return self.data["workflows"].get(workflow_id) |
| 114 | |
| 115 | def list(self) -> dict[str, dict[str, Any]]: |
| 116 | """Return all installed workflows.""" |
| 117 | return dict(self.data["workflows"]) |
| 118 | |
| 119 | def is_installed(self, workflow_id: str) -> bool: |
| 120 | """Check if a workflow is installed.""" |
no outgoing calls