cvpilot-tool/apps/desktop/electron/core/auth.ts
2024-09-06 14:27:41 +08:00

9 lines
217 B
TypeScript

import { machineIdSync } from "node-machine-id";
// Asyncronous call with async/await or Promise
export const getMachineId = async () => {
const id = await machineIdSync();
console.warn("机器码id: ", id);
};