forked from toolshed/abra
.chglog
.gitea
cli
app
catalogue
formatter
internal
recipe
server
add.go
init.go
list.go
new.go
remove.go
server.go
cli.go
upgrade.go
version.go
cmd
pkg
scripts
tests
.drone.yml
.envrc.sample
.gitignore
.goreleaser.yml
Makefile
README.md
go.mod
go.sum
27 lines
615 B
Go
27 lines
615 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",
|
|
Description: `
|
|
Manage the lifecycle of a server.
|
|
|
|
These commands support creating new servers using 3rd party integrations,
|
|
initialising existing servers to support Co-op Cloud deployments and managing
|
|
the connections to those servers.
|
|
`,
|
|
Subcommands: []*cli.Command{
|
|
serverNewCommand,
|
|
serverInitCommand,
|
|
serverAddCommand,
|
|
serverListCommand,
|
|
serverRemoveCommand,
|
|
},
|
|
}
|