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