github.com/matthewdale/lab@v0.14.0/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  	Long:    ``,
    13  	//Run: func(cmd *cobra.Command, args []string) {},
    14  }
    15  
    16  func init() {
    17  	RootCmd.AddCommand(projectCmd)
    18  }