ms-tools/gohid/gohid_default.go
2021-09-07 15:15:52 +02:00

9 lines
160 B
Go

// +build !linux
package gohid
import "errors"
func openHIDInternal(path string) (HIDDevice, error) {
return nil, errors.New("Platform is not supported")
}