forked from toolshed/abra
.gitea
cli
app
catalogue
internal
recipe
server
add.go
list.go
prune.go
remove.go
server.go
updater
cli.go
cmd
pkg
scripts
tests
.dockerignore
.drone.yml
.envrc.sample
.gitignore
.goreleaser.yml
AUTHORS.md
Dockerfile
LICENSE
Makefile
README.md
go.mod
go.sum
renovate.json
These were alpha prototypes and we'll reconsider once other layers of Abra are more stable.
19 lines
351 B
Go
19 lines
351 B
Go
package server
|
|
|
|
import (
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
// ServerCommand defines the `abra server` command and its subcommands
|
|
var ServerCommand = cli.Command{
|
|
Name: "server",
|
|
Aliases: []string{"s"},
|
|
Usage: "Manage servers",
|
|
Subcommands: []cli.Command{
|
|
serverAddCommand,
|
|
serverListCommand,
|
|
serverRemoveCommand,
|
|
serverPruneCommand,
|
|
},
|
|
}
|