Files
abra/cli/server/server.go
3wc 02b520200e
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
Mark command short descriptions with translators: tag
2025-08-28 11:33:22 -04:00

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"),
}