()
| 68 | } |
| 69 | |
| 70 | func newConfigCmd() *cobra.Command { |
| 71 | cmd := &cobra.Command{ |
| 72 | Use: "config", |
| 73 | Short: "Configure this client", |
| 74 | } |
| 75 | |
| 76 | cmd.AddCommand(newConfigSaveCmd(), newConfigViewCmd(), newConfigResetCmd(), newPluginCmd()) |
| 77 | return cmd |
| 78 | } |
| 79 | |
| 80 | // Configuration file used in repositories ot modify the attestation process |
| 81 | const ( |
no test coverage detected