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