add FindPath example code

This commit is contained in:
vcaesar 2019-05-13 09:59:13 -04:00
parent 31a5c61264
commit 537e89c6fd

View File

@ -89,6 +89,11 @@ func findName() {
if err == nil {
fmt.Println("name: ", names)
}
p, err := robotgo.FindPath(100)
if err == nil {
fmt.Println("path: ", p)
}
}
func ps() {