abra/cli/server/server.go

19 lines
351 B
Go
Raw Normal View History

package server
import (
"github.com/urfave/cli"
)
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-12-27 15:12:29 +00:00
Usage: "Manage servers",
Subcommands: []cli.Command{
serverAddCommand,
serverListCommand,
serverRemoveCommand,
2023-02-15 02:25:37 +00:00
serverPruneCommand,
},
}