abra/cli/server/server.go

24 lines
573 B
Go
Raw Normal View History

package server
import (
"github.com/urfave/cli/v2"
)
2021-08-02 20:03:53 +00:00
// ServerCommand defines the `abra server` command and its subcommands
var ServerCommand = &cli.Command{
Name: "server",
Aliases: []string{"s"},
2021-10-20 15:52:54 +00:00
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,
},
}