mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/yunionio/cloudpods.git
synced 2026-09-20 08:03:53 +08:00
14 lines
172 B
Go
14 lines
172 B
Go
package sftp
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func fakeFileInfoSys() interface{} {
|
|
return syscall.Win32FileAttributeData{}
|
|
}
|
|
|
|
func testOsSys(sys interface{}) error {
|
|
return nil
|
|
}
|