mirror of
https://github.com/containers/podman.git
synced 2025-06-11 01:58:37 +08:00
14 lines
203 B
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
|
|
}
|