mirror of https://github.com/containers/podman.git
15 lines
352 B
Go
15 lines
352 B
Go
// +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")
|
|
}
|