0
0
mirror of https://github.com/thegeeklab/drone-admin.git synced 2024-11-15 04:00:40 +00:00
drone-admin/admin/build/build.go

14 lines
208 B
Go
Raw Normal View History

2022-07-20 15:12:41 +00:00
package build
import "github.com/urfave/cli/v2"
func GetBuildCmd() *cli.Command {
return &cli.Command{
Name: "build",
Usage: "manage build",
Subcommands: []*cli.Command{
getPruneCmd(),
},
}
2022-07-20 15:12:41 +00:00
}