mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-23 10:21:00 +00:00
20 lines
345 B
Go
20 lines
345 B
Go
package build
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
// Command exports the build command set.
|
|
var Command = cli.Command{
|
|
Name: "build",
|
|
Usage: "manage builds",
|
|
Subcommands: []cli.Command{
|
|
buildListCmd,
|
|
buildLastCmd,
|
|
buildLogsCmd,
|
|
buildInfoCmd,
|
|
buildStopCmd,
|
|
buildStartCmd,
|
|
buildApproveCmd,
|
|
buildDeclineCmd,
|
|
buildQueueCmd,
|
|
},
|
|
}
|