mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-26 02:10:31 +00:00
16 lines
237 B
Go
16 lines
237 B
Go
|
package main
|
||
|
|
||
|
import "github.com/codegangsta/cli"
|
||
|
|
||
|
var buildCmd = cli.Command{
|
||
|
Name: "build",
|
||
|
Usage: "manage builds",
|
||
|
Subcommands: []cli.Command{
|
||
|
buildListCmd,
|
||
|
buildLastCmd,
|
||
|
buildInfoCmd,
|
||
|
buildStopCmd,
|
||
|
buildStartCmd,
|
||
|
},
|
||
|
}
|