gitee_cli/cmd/pull_request/pr.go

18 lines
267 B
Go
Raw Normal View History

2024-04-07 17:49:39 +08:00
package pull_request
import (
"github.com/spf13/cobra"
)
var Pr = &cobra.Command{
Use: "pr",
Aliases: []string{"pull_request"},
Short: "Manage pull requests",
}
func init() {
Pr.AddCommand(ListCmd)
Pr.AddCommand(CreateCmd)
Pr.AddCommand(CommentCmd)
}