mirror of
https://github.com/containers/podman.git
synced 2025-11-30 01:58:46 +08:00
Add a bare minimum GRPC service to the podman system service socket. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
24 lines
328 B
Go
24 lines
328 B
Go
//go:build !(linux || freebsd) || remote
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/containers/podman/v6/pkg/domain/entities"
|
|
)
|
|
|
|
var (
|
|
engineMode = entities.TunnelMode
|
|
)
|
|
|
|
func storeBefore() error {
|
|
return nil
|
|
}
|
|
|
|
func storeAfter() error {
|
|
return nil
|
|
}
|
|
|
|
func testingEngineBefore(_ *entities.PodmanConfig) (err error) {
|
|
return nil
|
|
}
|