woodpecker/cli/drone/autoscale/autoscale.go
2019-04-06 21:32:14 +02:00

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,
},
}