(ctx context.Context)
| 167 | |
| 168 | type PluginManagement interface { |
| 169 | ListPlugins(ctx context.Context) ([]PluginInfo, error) |
| 170 | EnablePlugin(ctx context.Context, name string) error |
| 171 | DisablePlugin(ctx context.Context, name string) error |
| 172 | } |
no outgoing calls