12 lines
213 B
Go
12 lines
213 B
Go
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
|
|
},
|
|
}
|