mirror of https://github.com/containers/podman.git
22 lines
530 B
Go
22 lines
530 B
Go
// +build ABISupport
|
|
|
|
package infra
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/containers/libpod/pkg/domain/entities"
|
|
"github.com/containers/libpod/pkg/domain/infra/abi"
|
|
"github.com/spf13/pflag"
|
|
)
|
|
|
|
// ContainerEngine Image Proxy will be EOL'ed after podman is separated from libpod repo
|
|
|
|
func NewLibpodImageRuntime(flags *pflag.FlagSet, opts *entities.PodmanConfig) (entities.ImageEngine, error) {
|
|
r, err := GetRuntime(context.Background(), flags, opts)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &abi.ImageEngine{Libpod: r}, nil
|
|
}
|