Some checks failed
continuous-integration/drone/push Build is failing
See #483
13 lines
230 B
Go
13 lines
230 B
Go
package app
|
|
|
|
import (
|
|
"coopcloud.tech/abra/pkg/i18n"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var AppCommand = &cobra.Command{
|
|
Use: i18n.G("app [cmd] [args] [flags]"),
|
|
Aliases: []string{i18n.G("a")},
|
|
Short: i18n.G("Manage apps"),
|
|
}
|