AddCommands adds all subcommands
(cmd *cobra.Command)
| 285 | |
| 286 | // AddCommands adds all subcommands |
| 287 | func AddCommands(cmd *cobra.Command) { |
| 288 | cmd.AddCommand( |
| 289 | NewRegisterCertificationTargetCommand(), |
| 290 | NewListCertificationTargetsCommand(), |
| 291 | NewGetCertificationTargetCommand(), |
| 292 | NewUpdateCertificationTargetCommand(), |
| 293 | NewRemoveCertificationTargetComand(), |
| 294 | NewGetMetricConfigurationCommand(), |
| 295 | ) |
| 296 | } |
no test coverage detected