woodpecker/drone/build.go

17 lines
254 B
Go
Raw Normal View History

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