mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-26 18:27:53 +00:00
14 lines
355 B
Go
14 lines
355 B
Go
// +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")
|
|
}
|