Update README.md

This commit is contained in:
vcaesar 2021-10-16 12:01:40 -04:00
parent 384f5adf97
commit 4c47f7354b
2 changed files with 3 additions and 3 deletions

View File

@ -39,10 +39,10 @@ func add() {
} }
func low() { func low() {
EvChan := hook.Start() evChan := hook.Start()
defer hook.End() defer hook.End()
for ev := range EvChan { for ev := range evChan {
fmt.Println("hook: ", ev) fmt.Println("hook: ", ev)
} }
} }

View File

@ -34,7 +34,7 @@ environment:
PATH: C:\msys64\mingw32\bin\;C:\Program Files (x86)\NSIS\;%PATH% PATH: C:\msys64\mingw32\bin\;C:\Program Files (x86)\NSIS\;%PATH%
# - COMPILER: MINGW_W64 # - COMPILER: MINGW_W64
# ARCHITECTURE: x64 # ARCHITECTURE: x64
GOVERSION: 1.17.1 GOVERSION: 1.17.2
# GOPATH: c:\gopath # GOPATH: c:\gopath
# scripts that run after cloning repository # scripts that run after cloning repository