mirror of
https://github.com/containers/podman.git
synced 2025-09-27 08:43:52 +08:00

We missed bumping the go module, so let's do it now :) * Automated go code with github.com/sirkon/go-imports-rename * Manually via `vgrep podman/v2` the rest Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
15 lines
355 B
Go
15 lines
355 B
Go
// +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")
|
|
}
|