mirror of
https://github.com/containers/podman.git
synced 2025-05-17 15:18:43 +08:00
16 lines
373 B
Go
16 lines
373 B
Go
//go:build remote
|
|
// +build remote
|
|
|
|
package infra
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/containers/podman/v4/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")
|
|
}
|