blob: e7107ff38812bfb79b85a00d43b8b35de0c2a2a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// +build remote
package infra
import (
"errors"
"github.com/containers/podman/v3/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")
}
|