mirror of
https://github.com/thegeeklab/drone-admin.git
synced 2024-11-14 17:50:40 +00:00
12 lines
172 B
Go
12 lines
172 B
Go
|
package build
|
||
|
|
||
|
import "github.com/urfave/cli/v2"
|
||
|
|
||
|
var Command = &cli.Command{
|
||
|
Name: "build",
|
||
|
Usage: "manage build",
|
||
|
Subcommands: []*cli.Command{
|
||
|
&buidPruneCmd,
|
||
|
},
|
||
|
}
|