mirror of https://github.com/pkg/sftp.git
14 lines
166 B
Go
14 lines
166 B
Go
|
// +build plan9
|
||
|
|
||
|
package sftp
|
||
|
|
||
|
import "syscall"
|
||
|
|
||
|
func fakeFileInfoSys() interface{} {
|
||
|
return &syscall.Dir{}
|
||
|
}
|
||
|
|
||
|
func testOsSys(sys interface{}) error {
|
||
|
return nil
|
||
|
}
|