podman/pkg/domain/infra/runtime_abi_unsupported.go

15 lines
352 B
Go

// +build remote
package infra
import (
"errors"
"github.com/containers/libpod/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")
}