Execute parses the args and dispatches to the adapter.
(ctx context.Context, args []string)
| 208 | |
| 209 | // Execute parses the args and dispatches to the adapter. |
| 210 | func (p *BuiltinMemoryPlugin) Execute(ctx context.Context, args []string) (string, error) { |
| 211 | return p.ExecuteWithStream(ctx, args, nil) |
| 212 | } |
| 213 | |
| 214 | // ExecuteWithStream mirrors Execute — this plugin produces no incremental |
| 215 | // output, so the stream callback is ignored. |