1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-01-05 10:20:36 +02:00
woodpecker/drone/build.go

20 lines
303 B
Go
Raw Normal View History

package main
2017-03-16 12:14:02 +02: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 11:05:49 +02:00
buildApproveCmd,
buildDeclineCmd,
buildQueueCmd,
},
}