cli/command/util.go
2020-06-22 15:19:33 -04:00

7 lines
192 B
Go

package command
import "github.com/spf13/cobra"
func includeRepoFlag(cmd *cobra.Command) {
cmd.Flags().StringP("repo", "R", "", "Select another repository using the `OWNER/REPO` format")
}