mirror of
https://github.com/containers/podman.git
synced 2025-11-29 01:28:22 +08:00
14 lines
190 B
Go
14 lines
190 B
Go
//go:build !remote
|
|
|
|
package generate
|
|
|
|
import (
|
|
"context"
|
|
|
|
"go.podman.io/common/libimage"
|
|
)
|
|
|
|
func imageRunPath(_ context.Context, _ *libimage.Image) (string, error) {
|
|
return "/run", nil
|
|
}
|