mirror of
https://github.com/drone/drone-cli.git
synced 2024-11-26 06:07:05 +01:00
18 lines
301 B
Go
18 lines
301 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,
|
|
serverCreateCmd,
|
|
serverDestroyCmd,
|
|
serverEnvCmd,
|
|
},
|
|
}
|