1
0
mirror of https://github.com/drone/drone-cli.git synced 2024-11-23 01:11:57 +01:00
drone-cli/drone/queue/queue.go
2018-10-21 21:42:22 -07:00

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,
},
}