2020-10-25 20:20:39 +01:00

19 lines
342 B
Go

package cmd
import (
"github.com/rsteube/carapace"
"github.com/spf13/cobra"
)
var stash_listCmd = &cobra.Command{
Use: "list",
Short: "list the stash entries that you currently have",
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(stash_listCmd).Standalone()
stashCmd.AddCommand(stash_listCmd)
}