This commit is contained in:
caue 2020-03-28 21:43:53 -03:00
parent a60a8234bc
commit 1d180ffb5a

View File

@ -29,7 +29,6 @@ import (
"time" "time"
"unsafe" "unsafe"
"github.com/go-vgo/robotgo"
hook "github.com/robotn/gohook" hook "github.com/robotn/gohook"
) )
@ -79,7 +78,7 @@ var (
pressed = make(map[uint16]bool, 256) pressed = make(map[uint16]bool, 256)
used = []int{} used = []int{}
keys = map[int][]uint16{} keys = map[int][]uint16{}
cbs = map[int]func(hook.Event){} cbs = map[int]func(Event){}
events = map[uint8][]int{} events = map[uint8][]int{}
) )