Some checks failed
continuous-integration/drone/push Build is failing
See #483
14 lines
318 B
Go
14 lines
318 B
Go
package server
|
|
|
|
import (
|
|
"github.com/leonelquinteros/gotext"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// ServerCommand defines the `abra server` command and its subcommands
|
|
var ServerCommand = &cobra.Command{
|
|
Use: gotext.Get("server [cmd] [args] [flags]"),
|
|
Aliases: []string{"s"},
|
|
Short: gotext.Get("Manage servers"),
|
|
}
|