(ctx context.Context, dockerCli command.Cli, backend api.Compose, services []string)
| 64 | } |
| 65 | |
| 66 | func (o *configOptions) ToProject(ctx context.Context, dockerCli command.Cli, backend api.Compose, services []string) (*types.Project, error) { |
| 67 | project, _, err := o.ProjectOptions.ToProject(ctx, dockerCli, backend, services, o.toProjectOptionsFns()...) |
| 68 | return project, err |
| 69 | } |
| 70 | |
| 71 | func (o *configOptions) ToModel(ctx context.Context, dockerCli command.Cli, services []string, po ...cli.ProjectOptionsFn) (map[string]any, error) { |
| 72 | po = append(po, o.toProjectOptionsFns()...) |
no test coverage detected