11 lines
210 B
Go
11 lines
210 B
Go
//go:build windows
|
|
|
|
package usb
|
|
|
|
import "fmt"
|
|
|
|
// Enumerate lists all USB devices (Windows stub)
|
|
func Enumerate() ([]Device, error) {
|
|
return nil, fmt.Errorf("USB enumeration not yet implemented on Windows")
|
|
}
|