blob: bac552b1ebb134f88ebb2b447ec7768e8c229882 (
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/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")
}
|