docs: pass on flag/help strings

This commit is contained in:
2022-01-19 11:21:06 +01:00
parent 9f2bb3f74f
commit cb210d0c81
5 changed files with 8 additions and 16 deletions

View File

@ -4,17 +4,12 @@ import (
"github.com/urfave/cli"
)
// AppCommand defines the `abra app` command and ets subcommands
var AppCommand = cli.Command{
Name: "app",
Aliases: []string{"a"},
Usage: "Manage apps",
ArgsUsage: "<app>",
Description: `
This command provides all the functionality you need to manage the life cycle
of your apps. From initial deployment to day-2 operations to scaling apps up
and spinning them down.
`,
Name: "app",
Aliases: []string{"a"},
Usage: "Manage apps",
ArgsUsage: "<app>",
Description: "This command provides functionality for managing the life cycle of your apps",
Subcommands: []cli.Command{
appNewCommand,
appConfigCommand,