mirror of
https://github.com/drone/drone-cli.git
synced 2024-11-26 06:07:05 +01:00
15 lines
271 B
Go
15 lines
271 B
Go
package autoscale
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
// Command exports the user command set.
|
|
var Command = cli.Command{
|
|
Name: "autoscale",
|
|
Usage: "manage autoscaling",
|
|
Subcommands: []cli.Command{
|
|
autoscalePauseCmd,
|
|
autoscaleResumeCmd,
|
|
autoscaleVersionCmd,
|
|
},
|
|
}
|