mirror of
https://github.com/jahruz67/wisp-open.git
synced 2026-08-08 18:14:08 +00:00
9 lines
138 B
Go
9 lines
138 B
Go
//go:build !windows
|
|
|
|
package hotkey
|
|
|
|
// AsyncKeyDown is a stub on non-Windows platforms.
|
|
func AsyncKeyDown(vk int) bool {
|
|
return false
|
|
}
|