mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-06 17:05:48 +00:00
13 lines
190 B
Go
13 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
|
|
}
|