mirror of
https://github.com/drone/drone-cli.git
synced 2025-02-20 16:41:18 +01:00
19 lines
311 B
Go
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,
|
|
},
|
|
}
|