Execute parses the invocation and dispatches to the adapter.
(ctx context.Context, args []string)
| 257 | |
| 258 | // Execute parses the invocation and dispatches to the adapter. |
| 259 | func (p *BuiltinContextPlugin) Execute(ctx context.Context, args []string) (string, error) { |
| 260 | return p.ExecuteWithStream(ctx, args, nil) |
| 261 | } |
| 262 | |
| 263 | // ExecuteWithStream runs the subcommand. The streaming callback is unused — |
| 264 | // context operations are short — but the signature satisfies the contract. |