You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 rivejä
207 B

  1. // +build !darwin,!linux,!windows
  2. package platform_device_id
  3. import (
  4. "github.com/pkg/errors"
  5. )
  6. func getPlatformDeviceId() (deviceId string, err error) {
  7. return "", errors.New("platform unsupported")
  8. }