(cli *cli)
| 52 | } |
| 53 | |
| 54 | func update(cli *cli) *cobra.Command { |
| 55 | cmd := &cobra.Command{ |
| 56 | Use: "update", |
| 57 | Short: "Update tenant settings by enabling or disabling flags", |
| 58 | } |
| 59 | |
| 60 | cmd.AddCommand(set(cli)) |
| 61 | cmd.AddCommand(unset(cli)) |
| 62 | |
| 63 | return cmd |
| 64 | } |
| 65 | |
| 66 | func set(cli *cli) *cobra.Command { |
| 67 | cmd := &cobra.Command{ |
no test coverage detected