carapace-bin/git_completer/cmd/diff_files_generated.go
2020-04-20 22:58:56 +02:00

18 lines
283 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
var diff_filesCmd = &cobra.Command{
Use: "diff-files",
Short: "Compares files in the working tree and the index",
Run: func(cmd *cobra.Command, args []string) {
},
}
func init() {
rootCmd.AddCommand(diff_filesCmd)
}