package spec import ( "github.com/urfave/cli/v2" ) func Root() *cli.Command { return &cli.Command{ Name: "spec", Usage: "Specifications related commands", Subcommands: []*cli.Command{ GetCommand(), UpdateCommand(), DeleteCommand(), }, } }