Get machine_id working on macOS as well

This commit is contained in:
Kovid Goyal
2026-04-12 12:31:42 +05:30
parent ccbe5d7db3
commit 59cf34ca58
5 changed files with 134 additions and 5 deletions

View File

@@ -0,0 +1,15 @@
package machine_id
import (
"fmt"
"testing"
)
var _ = fmt.Print
func TestMachineId(t *testing.T) {
_, err := MachineId()
if err != nil {
t.Fatal(err)
}
}