mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-04-26 05:24:45 +00:00
17 lines
301 B
Go
17 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,
|
|
},
|
|
}
|