2023-12-10 15:10:46 +00:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
var configCmd = &cobra.Command{
|
|
|
|
Use: "config",
|
2024-12-27 22:42:44 +00:00
|
|
|
Short: "Git Project Manager Configuration",
|
2023-12-10 15:10:46 +00:00
|
|
|
Aliases: []string{"conf"},
|
|
|
|
Long: configCmdLong,
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
rootCmd.AddCommand(configCmd)
|
|
|
|
}
|