1
0
mirror of https://github.com/drone/drone-cli.git synced 2026-01-24 03:48:00 +01:00
drone-cli/drone/server/server.go

15 lines
246 B
Go
Raw Normal View History

2018-02-14 22:06:05 +01:00
package server
import "github.com/urfave/cli"
// Command exports the user command set.
var Command = cli.Command{
Name: "server",
Usage: "manage servers",
Subcommands: []cli.Command{
serverListCmd,
serverInfoCmd,
serverOpenCmd,
},
}