summaryrefslogtreecommitdiff
path: root/internal/askcli/command_urgency.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-27 11:41:41 +0200
committerPaul Buetow <paul@buetow.org>2026-03-27 11:41:41 +0200
commit2d35eeb40eee8beed7163f41afab279bce2976ef (patch)
treefee5de2c646826cba17aab79f8c57c408c96eb71 /internal/askcli/command_urgency.go
parentf57ccb885d20c48e1dae65b8ad5c46375b9a11a9 (diff)
Implement command registry for askcli commands
Diffstat (limited to 'internal/askcli/command_urgency.go')
-rw-r--r--internal/askcli/command_urgency.go3
1 files changed, 2 insertions, 1 deletions
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 {