Skip to content

Instantly share code, notes, and snippets.

@eranchetz
Created November 21, 2018 11:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eranchetz/f11e6b37a0cad93ab5686f5fcd5c5b5b to your computer and use it in GitHub Desktop.
Save eranchetz/f11e6b37a0cad93ab5686f5fcd5c5b5b to your computer and use it in GitHub Desktop.
Super Clicker
package main
import (
"github.com/go-vgo/robotgo"
"time"
)
func main() {
time.Sleep(3 * time.Second)
for i := 0; i < 1000; i++ {
robotgo.MouseClick("left", true)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment