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