Files
abra/cli/server/server.go
decentral1se d9cffbe6d1
Some checks failed
continuous-integration/drone/push Build is failing
WIP: feat: translation support
See #483
2025-08-20 10:28:23 +02:00

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