mirror of
https://github.com/thegeeklab/drone-admin.git
synced 2024-11-15 04:00:40 +00:00
14 lines
208 B
Go
14 lines
208 B
Go
package build
|
|
|
|
import "github.com/urfave/cli/v2"
|
|
|
|
func GetBuildCmd() *cli.Command {
|
|
return &cli.Command{
|
|
Name: "build",
|
|
Usage: "manage build",
|
|
Subcommands: []*cli.Command{
|
|
getPruneCmd(),
|
|
},
|
|
}
|
|
}
|