您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

12 行
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. }