github.com/abhinav/git-pr@v0.6.1-0.20171029234004-54218d68c11b/cmd/git-pr/main.go (about)

     1  package main
     2  
     3  import "github.com/abhinav/git-pr/cli"
     4  
     5  func main() {
     6  	cli.Main(
     7  		cli.ShortDesc("Interact with GitHub Pull Requests from the command line."),
     8  		&cli.Command{
     9  			Name:      "land",
    10  			ShortDesc: "Lands a GitHub PR.",
    11  			Build:     newLandCommand,
    12  		},
    13  		&cli.Command{
    14  			Name:      "rebase",
    15  			ShortDesc: "Rebases a PR branch.",
    16  			Build:     newRebaseCommand,
    17  		},
    18  	)
    19  }