github.com/hanks177/podman/v4@v4.1.3-0.20220613032544-16d90015bc83/pkg/domain/infra/runtime_abi_unsupported.go (about)

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