0
0
mirror of https://github.com/thegeeklab/drone-admin.git synced 2024-06-02 17:39:39 +02:00
drone-admin/admin/autoscaler/autoscaler.go

14 lines
229 B
Go
Raw Normal View History

package autoscaler
import "github.com/urfave/cli/v2"
func GetAutoscalerCmd() *cli.Command {
return &cli.Command{
Name: "autoscaler",
Usage: "manage autoscaler",
Subcommands: []*cli.Command{
getReaperCmd(),
},
}
}