mirror of
https://github.com/robotn/gohook.git
synced 2024-11-22 11:36:47 +08:00
747 B
747 B
gohook
package main
import (
"fmt"
"github.com/robotn/gohook"
)
func main() {
EvChan := hook.Start()
defer hook.End()
for ev := range EvChan {
fmt.Println(ev)
}
}
Based on libuiohook.