()
| 62 | return |
| 63 | } |
| 64 | func GetMachineID() string { |
| 65 | id, e := machineid.ID() |
| 66 | if e != nil { |
| 67 | msg.Err("Error on get machine ID") |
| 68 | id = "AAAA" |
| 69 | } |
| 70 | return id |
| 71 | } |
| 72 | |
| 73 | func Md5MachineID() string { |
| 74 | hash := md5.New() |
no test coverage detected