mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-05 00:15:44 +00:00
7 lines
125 B
Go
7 lines
125 B
Go
//go:build !linux
|
|
|
|
package images
|
|
|
|
func setupPipe() (string, func() <-chan error, error) {
|
|
return "/dev/stdout", nil, nil
|
|
}
|