Setup the plugin. This is called by the plugin manager after the backend is initialized.
(self)
| 21 | } |
| 22 | |
| 23 | def setup(self): |
| 24 | """ |
| 25 | Setup the plugin. This is called by the plugin manager after the backend |
| 26 | is initialized. |
| 27 | """ |
| 28 | self.log.info(f"This is the echo plugin, running with backend: {self.backend.name}") |
| 29 | # Accessing the final configuration of the plugin. |
| 30 | self.response_prefix = self.config.get("plugins.echo.response.prefix") |
| 31 | |
| 32 | def get_shell_completions(self, _base_shell_completions): |
| 33 | """Example of provided shell completions.""" |