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

19 lines
328 B
Go

package cmd
import (
"github.com/rsteube/carapace"
"github.com/spf13/cobra"
)
var stash_clearCmd = &cobra.Command{
Use: "clear",
Short: "remove all the stash entries",
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(stash_clearCmd).Standalone()
stashCmd.AddCommand(stash_clearCmd)
}