1
0
mirror of https://github.com/drone/drone-cli.git synced 2025-02-20 16:41:18 +01:00
drone-cli/drone/cron/cron.go
2021-06-22 19:31:38 +01:00

19 lines
311 B
Go

package cron
import "github.com/urfave/cli"
// Command exports the registry command set.
var Command = cli.Command{
Name: "cron",
Usage: "manage cron jobs",
Subcommands: []cli.Command{
cronListCmd,
cronInfoCmd,
cronCreateCmd,
cronDeleteCmd,
cronDisableCmd,
cronEnableCmd,
cronExecCmd,
},
}