mirror of
https://github.com/drone/drone-cli.git
synced 2026-01-24 03:48:00 +01:00
15 lines
246 B
Go
15 lines
246 B
Go
|
|
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,
|
||
|
|
},
|
||
|
|
}
|