github.com/containers/podman/v2@v2.2.2-0.20210501105131-c1e07d070c4c/pkg/domain/infra/runtime_abi_unsupported.go (about) 1 // +build remote 2 3 package infra 4 5 import ( 6 "errors" 7 8 "github.com/containers/podman/v2/pkg/domain/entities" 9 ) 10 11 // NewSystemEngine factory provides a libpod runtime for specialized system operations 12 func NewSystemEngine(setup entities.EngineSetup, facts *entities.PodmanConfig) (entities.SystemEngine, error) { 13 return nil, errors.New("not implemented") 14 }