fix bug where using a issue command in the repl would crash a task

This commit is contained in:
Robin Olsen
2026-02-28 11:39:05 +01:00
parent 8cdaf93f26
commit 697b17e890
3 changed files with 32 additions and 15 deletions

View File

@@ -0,0 +1,9 @@
package surveyCmd
import "github.com/spf13/cobra"
var IssuesCmd = &cobra.Command{
Use: "issues",
Aliases: []string{"i"},
Short: "Commands related to issues",
}