Files
podman/cmd/podman-testing/store_unsupported.go
Nalin Dahyabhai be82989be3 Add a no-op GRPC responder service to the podman system service
Add a bare minimum GRPC service to the podman system service socket.

Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
2025-11-03 11:14:32 -05:00

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
}