forked from toolshed/abra
cli
app
catalogue
internal
recipe
server
add.go
list.go
prune.go
remove.go
server.go
updater
complete.go
run.go
upgrade.go
cmd
pkg
scripts
tests
vendor
.dockerignore
.drone.yml
.envrc.sample
.gitignore
.goreleaser.yml
AUTHORS.md
Dockerfile
LICENSE
Makefile
README.md
go.mod
go.sum
renovate.json
11 lines
252 B
Go
11 lines
252 B
Go
package server
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
// ServerCommand defines the `abra server` command and its subcommands
|
|
var ServerCommand = &cobra.Command{
|
|
Use: "server [cmd] [args] [flags]",
|
|
Aliases: []string{"s"},
|
|
Short: "Manage servers",
|
|
}
|