package catalogue import ( "github.com/urfave/cli/v2" ) // CatalogueCommand defines the `abra catalogue` command and sub-commands. var CatalogueCommand = &cli.Command{ Name: "catalogue", Usage: "Manage the recipe catalogue (for maintainers)", Aliases: []string{"c"}, ArgsUsage: "", Description: "This command helps recipe packagers interact with the recipe catalogue", Subcommands: []*cli.Command{ catalogueGenerateCommand, }, }