16 lines
415 B
Go
16 lines
415 B
Go
package server
|
|
|
|
import (
|
|
"coopcloud.tech/abra/pkg/i18n"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// ServerCommand defines the `abra server` command and its subcommands
|
|
var ServerCommand = &cobra.Command{
|
|
// translators: `server` command group
|
|
Use: i18n.G("server [cmd] [args] [flags]"),
|
|
Aliases: []string{i18n.G("s")},
|
|
// translators: Short description for `server` command group
|
|
Short: i18n.G("Manage servers"),
|
|
}
|