mirror of
https://github.com/drone/drone-cli.git
synced 2024-11-23 01:11:57 +01:00
15 lines
247 B
Go
15 lines
247 B
Go
package queue
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
// Command exports the queue command set.
|
|
var Command = cli.Command{
|
|
Name: "queue",
|
|
Usage: "queue operations",
|
|
Subcommands: []cli.Command{
|
|
queueListCmd,
|
|
queuePauseCmd,
|
|
queueResumeCmd,
|
|
},
|
|
}
|