mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-14 12:49:36 +00:00
16 lines
172 B
Go
16 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
|
|
}
|