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,
|
||
|
},
|
||
|
}
|