We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a7eea9 commit 0e7dac7Copy full SHA for 0e7dac7
cmds.go
@@ -44,6 +44,16 @@ var addCmd = &cobra.Command{
44
},
45
}
46
47
+var whereCmd = &cobra.Command{
48
+ Use: "where",
49
+ Short: "Show where your tasks are stored",
50
+ Args: cobra.NoArgs,
51
+ RunE: func(cmd *cobra.Command, args []string) error {
52
+ _, err := fmt.Println(setupPath())
53
+ return err
54
+ },
55
+}
56
+
57
var deleteCmd = &cobra.Command{
58
Use: "delete ID",
59
Short: "Delete a task by ID",
@@ -226,6 +236,7 @@ func init() {
226
236
"specify a status for your task",
227
237
)
228
238
rootCmd.AddCommand(updateCmd)
239
+ rootCmd.AddCommand(whereCmd)
229
240
rootCmd.AddCommand(deleteCmd)
230
241
rootCmd.AddCommand(kanbanCmd)
231
242
0 commit comments