mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-18 16:01:05 +00:00
15 lines
237 B
Go
15 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,
|
|
},
|
|
}
|