woodpecker/drone/build/build.go

21 lines
345 B
Go
Raw Normal View History

2017-04-29 17:03:45 +00:00
package build
2017-03-16 10:14:02 +00:00
import "github.com/urfave/cli"
2017-04-29 17:03:45 +00:00
// Command exports the build command set.
var Command = cli.Command{
Name: "build",
Usage: "manage builds",
Subcommands: []cli.Command{
buildListCmd,
buildLastCmd,
buildLogsCmd,
buildInfoCmd,
buildStopCmd,
buildStartCmd,
2017-03-18 09:05:49 +00:00
buildApproveCmd,
buildDeclineCmd,
buildQueueCmd,
},
}