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

18 lines
287 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
var mailinfoCmd = &cobra.Command{
Use: "mailinfo",
Short: "Extracts patch and authorship from a single e-mail message",
Run: func(cmd *cobra.Command, args []string) {
},
}
func init() {
rootCmd.AddCommand(mailinfoCmd)
}