goadb/unix.go
Mandar Limaye daaa0fa467 Add conditional build files for unix.Access.
This will allow library to be built on windows.
2016-08-09 12:07:21 -05:00

12 lines
243 B
Go

package adb
/*
Exported Access function calls private access function.
Implementation for private access function is provided in
access_win.go for windows and
access_unix.go for unix
*/
func Access(path string) error {
return access(path)
}