woodpecker/drone/build.go
2017-03-18 17:05:49 +08:00

20 lines
303 B
Go

package main
import "github.com/urfave/cli"
var buildCmd = cli.Command{
Name: "build",
Usage: "manage builds",
Subcommands: []cli.Command{
buildListCmd,
buildLastCmd,
buildLogsCmd,
buildInfoCmd,
buildStopCmd,
buildStartCmd,
buildApproveCmd,
buildDeclineCmd,
buildQueueCmd,
},
}