15 lines
324 B
Go
15 lines
324 B
Go
package app
|
|
|
|
import (
|
|
"coopcloud.tech/abra/pkg/i18n"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var AppCommand = &cobra.Command{
|
|
// translators: `app` command group
|
|
Use: i18n.G("app [cmd] [args] [flags]"),
|
|
Aliases: []string{i18n.G("a")},
|
|
// translators: Short description for `app` command group
|
|
Short: i18n.G("Manage apps"),
|
|
}
|