github.com/zaquestion/lab@v0.25.1/cmd/project.go (about) 1 package cmd 2 3 import ( 4 "github.com/spf13/cobra" 5 ) 6 7 // repoCmd represents the repo command 8 var projectCmd = &cobra.Command{ 9 Use: "project", 10 Aliases: []string{"repo"}, 11 Short: "Perform project level operations on GitLab", 12 PersistentPreRun: labPersistentPreRun, 13 } 14 15 func init() { 16 RootCmd.AddCommand(projectCmd) 17 }