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