16 lines
254 B
Go
16 lines
254 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,
|
|
buildQueueCmd,
|
|
},
|
|
}
|