Execute implements the plugin contract.
(ctx context.Context, args []string)
| 104 | |
| 105 | // Execute implements the plugin contract. |
| 106 | func (p *BuiltinToolsPlugin) Execute(ctx context.Context, args []string) (string, error) { |
| 107 | return p.ExecuteWithStream(ctx, args, nil) |
| 108 | } |
| 109 | |
| 110 | // ExecuteWithStream mirrors Execute — no incremental output. |
| 111 | func (p *BuiltinToolsPlugin) ExecuteWithStream(_ context.Context, args []string, _ func(string)) (string, error) { |