podman/pkg/specgen/generate/storage_linux.go

14 lines
203 B
Go

//go:build !remote
package generate
import (
"context"
"github.com/containers/common/libimage"
)
func imageRunPath(ctx context.Context, img *libimage.Image) (string, error) {
return "/run", nil
}