18 lines
267 B
Go
18 lines
267 B
Go
|
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)
|
||
|
}
|