mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-11 19:35:43 +00:00
13 lines
156 B
Go
13 lines
156 B
Go
package sftp
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func fakeFileInfoSys() any {
|
|
return syscall.Win32FileAttributeData{}
|
|
}
|
|
|
|
func testOsSys(sys any) error {
|
|
return nil
|
|
}
|