24 lines
573 B
Go
24 lines
573 B
Go
package server
|
|
|
|
import (
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// ServerCommand defines the `abra server` command and its subcommands
|
|
var ServerCommand = &cli.Command{
|
|
Name: "server",
|
|
Aliases: []string{"s"},
|
|
Usage: "Manage servers via 3rd party providers",
|
|
Description: `
|
|
These commands support creating and managing servers using 3rd party
|
|
integrations. Servers can be provisioned from scratch so that they are capable
|
|
of hosing Co-op Cloud apps.
|
|
`,
|
|
Subcommands: []*cli.Command{
|
|
serverNewCommand,
|
|
serverAddCommand,
|
|
serverListCommand,
|
|
serverRemoveCommand,
|
|
},
|
|
}
|