summaryrefslogtreecommitdiff
path: root/pkg/domain/infra/runtime_abi_unsupported.go
blob: 9e5bd01eb2281b9b9de132388832a36138fbd955 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//go:build remote
// +build remote

package infra

import (
	"errors"

	"github.com/containers/podman/v4/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")
}