Sign in
chromium
/
external
/
github.com
/
pkg
/
sftp
/
ab3b1a348110878ba49035ce91904cc41743feb0
/
.
/
request-plan9.go
blob: 38f91bcde28213d268fc76adc4699aa308481da9 [
file
]
//go:build plan9
// +build plan9
package sftp
import (
"syscall"
)
func fakeFileInfoSys() interface{} {
return &syscall.Dir{}
}
func testOsSys(sys interface{}) error {
return nil
}