starting the plugin
(self, name: str)
| 800 | await self._plugins[name].on_stoped() |
| 801 | |
| 802 | async def start_plugin(self, name: str) -> None: |
| 803 | """starting the plugin""" |
| 804 | log.info('starting the plugin <%s>', name) |
| 805 | self._check_plugins(name) |
| 806 | self._plugin_status[name] = PluginStatus.Running |
| 807 | await self._plugins[name].on_running() |
| 808 | |
| 809 | def plugin_status(self, name: str) -> PluginStatus: |
| 810 | """get the plugin status""" |
no test coverage detected