(dockerCli command.Cli)
| 76 | } |
| 77 | |
| 78 | func transformersCommand(dockerCli command.Cli) *cobra.Command { |
| 79 | cmd := &cobra.Command{ |
| 80 | Use: "transformations CMD [OPTIONS]", |
| 81 | Short: "Manage transformation images", |
| 82 | } |
| 83 | cmd.AddCommand( |
| 84 | listTransformersCommand(dockerCli), |
| 85 | createTransformerCommand(dockerCli), |
| 86 | ) |
| 87 | return cmd |
| 88 | } |
| 89 | |
| 90 | func listTransformersCommand(dockerCli command.Cli) *cobra.Command { |
| 91 | options := lsOptions{} |
no test coverage detected