1
0
mirror of https://github.com/drone/drone-cli.git synced 2026-01-16 07:51:33 +01:00
drone-cli/drone/queue/queue.go

15 lines
247 B
Go
Raw Normal View History

2018-10-22 06:42:22 +02:00
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,
},
}