Files
abra/cli/server/server.go
decentral1se 4e205cf13e
All checks were successful
continuous-integration/drone/push Build is passing
feat: translation support
See #483
2025-08-23 17:55:56 +02:00

14 lines
313 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{
Use: i18n.G("server [cmd] [args] [flags]"),
Aliases: []string{i18n.G("s")},
Short: i18n.G("Manage servers"),
}