()
| 631 | } |
| 632 | |
| 633 | async reloadPlugins(): Promise<ReloadSummary> { |
| 634 | const rpc = await this.getRpc(); |
| 635 | return rpc.reloadPlugins({}); |
| 636 | } |
| 637 | |
| 638 | async getPluginInfo(id: string): Promise<PluginInfo> { |
| 639 | const rpc = await this.getRpc(); |
nothing calls this directly
no test coverage detected