mirror of
https://github.com/drone/drone-cli.git
synced 2025-02-22 01:21:17 +01:00
17 lines
279 B
Go
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,
|
|
},
|
|
}
|