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