mirror of
https://github.com/thegeeklab/drone-admin.git
synced 2024-11-15 14:10:39 +00:00
12 lines
194 B
Go
12 lines
194 B
Go
|
package autoscaler
|
||
|
|
||
|
import "github.com/urfave/cli/v2"
|
||
|
|
||
|
var Command = &cli.Command{
|
||
|
Name: "autoscaler",
|
||
|
Usage: "manage autoscaler",
|
||
|
Subcommands: []*cli.Command{
|
||
|
&autoscalerReaperCmd,
|
||
|
},
|
||
|
}
|