mirror of
https://github.com/restic/restic.git
synced 2024-12-26 01:37:12 +00:00
11 lines
167 B
Go
11 lines
167 B
Go
package sftp
|
|
|
|
import "syscall"
|
|
|
|
func fakeFileInfoSys() interface{} {
|
|
return syscall.Win32FileAttributeData{}
|
|
}
|
|
|
|
func testOsSys(sys interface{}) error {
|
|
return nil
|
|
}
|