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

package infra

import (
	"errors"

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