abra/cli/catalogue/catalogue.go
decentral1se 0e5e7490b3
All checks were successful
continuous-integration/drone/push Build is passing
docs: some rewording and clarifying
2021-10-20 17:52:54 +02:00

18 lines
468 B
Go

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: "<recipe>",
Description: "This command helps recipe packagers interact with the recipe catalogue",
Subcommands: []*cli.Command{
catalogueGenerateCommand,
},
}