woodpecker/drone/build.go

20 lines
303 B
Go
Raw Normal View History

package main
2017-03-16 10:14:02 +00:00
import "github.com/urfave/cli"
var buildCmd = 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,
},
}