(ctx context.Context, dockerCli command.Cli, backendOptions *BackendOptions, opts unpauseOptions, services []string)
| 77 | } |
| 78 | |
| 79 | func runUnPause(ctx context.Context, dockerCli command.Cli, backendOptions *BackendOptions, opts unpauseOptions, services []string) error { |
| 80 | project, name, err := opts.projectOrName(ctx, dockerCli, services...) |
| 81 | if err != nil { |
| 82 | return err |
| 83 | } |
| 84 | return withBackend(dockerCli, backendOptions, func(backend api.Compose) error { |
| 85 | return backend.UnPause(ctx, name, api.PauseOptions{ |
| 86 | Services: services, |
| 87 | Project: project, |
| 88 | }) |
| 89 | }) |
| 90 | } |
no test coverage detected