(cmd *cobra.Command, exportTarget *Exporter, fields []string)
| 24 | } |
| 25 | |
| 26 | func AddJSONFlags(cmd *cobra.Command, exportTarget *Exporter, fields []string) { |
| 27 | f := cmd.Flags() |
| 28 | addJsonFlag(f) |
| 29 | addJqFlag(f, "q") |
| 30 | addTemplateFlag(f, "t") |
| 31 | |
| 32 | setupJsonFlags(cmd, exportTarget, fields) |
| 33 | } |
| 34 | |
| 35 | func AddJSONFlagsWithoutShorthand(cmd *cobra.Command, exportTarget *Exporter, fields []string) { |
| 36 | f := cmd.Flags() |