Files
drone-cli/drone/cron/cron.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,
},
}