Get a plugin by name.
(self, name: str)
| 82 | logger.error(f"Error loading plugin '{name}': {e}") |
| 83 | |
| 84 | def get_plugin(self, name: str) -> Any | None: |
| 85 | """Get a plugin by name.""" |
| 86 | return self._plugins.get(name) |
| 87 | |
| 88 | def list_available_plugins(self) -> list[dict[str, Any]]: |
| 89 | """List all available plugins with their configurations.""" |
no test coverage detected