Files
podman/pkg/domain/infra/runtime_abi_unsupported.go
2020-07-28 08:23:45 -04:00

15 lines
355 B
Go

// +build remote
package infra
import (
"errors"
"github.com/containers/podman/v2/pkg/domain/entities"
)
// NewSystemEngine factory provides a libpod runtime for specialized system operations
func NewSystemEngine(setup entities.EngineSetup, facts *entities.PodmanConfig) (entities.SystemEngine, error) {
return nil, errors.New("not implemented")
}