(ctx context.Context, cmd *cli.Command)
| 20 | } |
| 21 | |
| 22 | func commandCompose(ctx context.Context, cmd *cli.Command) error { |
| 23 | ce := clienv.FromCLI(cmd) |
| 24 | dc := dockercompose.New(ce.Path.WorkingDir(), ce.Path.DockerCompose(), ce.ProjectName()) |
| 25 | |
| 26 | return dc.Wrapper(ctx, cmd.Args().Slice()...) //nolint:wrapcheck |
| 27 | } |
nothing calls this directly
no test coverage detected