goadb/adb/executable.go
2020-07-13 14:18:10 +08:00

12 lines
291 B
Go

package adb
/*
isExecutable function calls the isExecutableOnPlatform function.
Implementation the isExecutableOnPlatform function is provided in
execuatble_win.go for windows and
executable_unix.go for unix.
*/
func isExecutable(path string) error {
return isExecutableOnPlatform(path)
}