mirror of
https://github.com/containers/podman.git
synced 2026-09-18 17:22:46 -04:00
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
17 lines
172 B
Go
17 lines
172 B
Go
//go:build plan9
|
|
// +build plan9
|
|
|
|
package sftp
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func fakeFileInfoSys() any {
|
|
return &syscall.Dir{}
|
|
}
|
|
|
|
func testOsSys(sys any) error {
|
|
return nil
|
|
}
|