mirror of
https://github.com/containers/podman.git
synced 2026-09-16 15:55:37 -04:00
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
14 lines
156 B
Go
14 lines
156 B
Go
package sftp
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func fakeFileInfoSys() any {
|
|
return syscall.Win32FileAttributeData{}
|
|
}
|
|
|
|
func testOsSys(sys any) error {
|
|
return nil
|
|
}
|