1
0
mirror of https://github.com/drone/drone-cli.git synced 2025-02-22 01:21:17 +01:00
drone-cli/drone/cron/cron.go
2018-10-21 19:54:57 -07:00

17 lines
279 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,
cronDisableCmd,
cronEnableCmd,
},
}