get the plugin status
(self, name: str)
| 807 | await self._plugins[name].on_running() |
| 808 | |
| 809 | def plugin_status(self, name: str) -> PluginStatus: |
| 810 | """get the plugin status""" |
| 811 | self._check_plugins(name) |
| 812 | return self._plugin_status[name] |
| 813 | |
| 814 | @property |
| 815 | def server_endpoint(self) -> str: |
no test coverage detected