Ryan McGuire
c78c41f567
All checks were successful
Build and Publish / release (push) Successful in 1m10s
17 lines
253 B
Go
17 lines
253 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var configCmd = &cobra.Command{
|
|
Use: "config",
|
|
Short: "Git Project Manager Configuration",
|
|
Aliases: []string{"conf"},
|
|
Long: configCmdLong,
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(configCmd)
|
|
}
|