17 lines
256 B
Go
17 lines
256 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var configCmd = &cobra.Command{
|
|
Use: "config",
|
|
Short: "GitLab Project Manager Configuration",
|
|
Aliases: []string{"conf"},
|
|
Long: configCmdLong,
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(configCmd)
|
|
}
|