(parent *cobra.Command)
| 20 | } |
| 21 | |
| 22 | func RegisterCommandsRecursive(parent *cobra.Command) { |
| 23 | relationCmd := newRelationCmd() |
| 24 | |
| 25 | parent.AddCommand(relationCmd) |
| 26 | |
| 27 | relationCmd.AddCommand(NewGetCmd(), NewCreateCmd(), NewDeleteCmd(), NewDeleteAllCmd(), NewParseCmd()) |
| 28 | } |
| 29 | |
| 30 | func registerPackageFlags(flags *pflag.FlagSet) { |
| 31 | client.RegisterRemoteURLFlags(flags) |