package cmd import "github.com/spf13/cobra" var historyCmd = &cobra.Command{ Use: "history", Short: "Summarize recent git history", Run: func(cmd *cobra.Command, args []string) { // TODO: implement }, }