()
| 602 | } |
| 603 | |
| 604 | async listPlugins(): Promise<readonly PluginSummary[]> { |
| 605 | const rpc = await this.getRpc(); |
| 606 | return rpc.listPlugins({}); |
| 607 | } |
| 608 | |
| 609 | async installPlugin(source: string): Promise<PluginSummary> { |
| 610 | const rpc = await this.getRpc(); |
nothing calls this directly
no test coverage detected