mirror of
https://github.com/BertoldVdb/ms-tools.git
synced 2025-12-10 07:44:46 +01:00
9 lines
160 B
Go
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")
|
|
}
|