mirror of https://github.com/containers/podman.git
25 lines
754 B
Go
25 lines
754 B
Go
package tunnel
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/containers/libpod/pkg/bindings/containers"
|
|
"github.com/containers/libpod/pkg/domain/entities"
|
|
)
|
|
|
|
func (ic *ContainerEngine) ContainerExists(ctx context.Context, nameOrId string) (bool, error) {
|
|
return containers.Exists(ctx, nameOrId)
|
|
}
|
|
|
|
func (ic *ContainerEngine) ContainerWait(ctx context.Context, namesOrIds []string, options entities.WaitOptions) ([]entities.WaitReport, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
func (r *ContainerEngine) ContainerDelete(ctx context.Context, opts entities.ContainerDeleteOptions) (*entities.ContainerDeleteReport, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (r *ContainerEngine) ContainerPrune(ctx context.Context) (*entities.ContainerPruneReport, error) {
|
|
panic("implement me")
|
|
}
|