From 2d35eeb40eee8beed7163f41afab279bce2976ef Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 27 Mar 2026 11:41:41 +0200 Subject: Implement command registry for askcli commands --- internal/askcli/command_urgency.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'internal/askcli/command_urgency.go') diff --git a/internal/askcli/command_urgency.go b/internal/askcli/command_urgency.go index 9911f42..bc7d4fd 100644 --- a/internal/askcli/command_urgency.go +++ b/internal/askcli/command_urgency.go @@ -8,7 +8,8 @@ import ( "sort" ) -func (d *Dispatcher) handleUrgency(ctx context.Context, stdout, stderr io.Writer) (int, error) { +func (d *Dispatcher) handleUrgency(ctx context.Context, args []string, stdout, stderr io.Writer) (int, error) { + _ = args var outBuf bytes.Buffer code, err := d.runner.Run(ctx, []string{"export"}, nil, &outBuf, stderr) if code != 0 { -- cgit v1.2.3