package cmd import "github.com/spf13/cobra" var commitCmd = &cobra.Command{ Use: "commit", Short: "Generate message and commit staged changes", Run: func(cmd *cobra.Command, args []string) { // TODO: implement }, }