diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-06 18:03:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-06 18:03:34 +0200 |
commit | 09f553cc8054a670cb2c333ee47de4311d325635 (patch) | |
tree | 8c69db4a0f11455f92a0c89a90c993e5bd28f6f4 /pkg/domain/infra/tunnel/containers.go | |
parent | 4b69cf095002950b850b6b787f779cc1cc50022f (diff) | |
parent | 5e0b4497365f9b3c2d795e5771a3abec7cd24cbb (diff) | |
download | podman-09f553cc8054a670cb2c333ee47de4311d325635.tar.gz podman-09f553cc8054a670cb2c333ee47de4311d325635.tar.bz2 podman-09f553cc8054a670cb2c333ee47de4311d325635.zip |
Merge pull request #5731 from baude/v2start
podmanv2 start
Diffstat (limited to 'pkg/domain/infra/tunnel/containers.go')
-rw-r--r-- | pkg/domain/infra/tunnel/containers.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/domain/infra/tunnel/containers.go b/pkg/domain/infra/tunnel/containers.go index 1e71cba2c..4101068ba 100644 --- a/pkg/domain/infra/tunnel/containers.go +++ b/pkg/domain/infra/tunnel/containers.go @@ -313,3 +313,7 @@ func (ic *ContainerEngine) ContainerAttach(ctx context.Context, nameOrId string, func (ic *ContainerEngine) ContainerExec(ctx context.Context, nameOrId string, options entities.ExecOptions) (int, error) { return 125, errors.New("not implemented") } + +func (ic *ContainerEngine) ContainerStart(ctx context.Context, namesOrIds []string, options entities.ContainerStartOptions) ([]*entities.ContainerStartReport, error) { + return nil, errors.New("not implemented") +} |