mirror of
https://github.com/drone/drone-cli.git
synced 2026-01-16 07:51:33 +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,
|
||
|
|
},
|
||
|
|
}
|