12 lines
246 B
Go
12 lines
246 B
Go
package cmd
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
var commitMsgCmd = &cobra.Command{
|
|
Use: "commit-msg",
|
|
Short: "Generate conventional commit message from staged changes",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
// TODO: implement
|
|
},
|
|
}
|