cvpilot-tool/apps/desktop/electron/core/auth.ts

9 lines
214 B
TypeScript
Raw Normal View History

2024-09-03 14:10:36 +08:00
import { machineIdSync } from "node-machine-id";
// Asyncronous call with async/await or Promise
export const getMachineId = async () => {
const id = await machineIdSync();
2024-09-10 22:03:12 +08:00
console.warn("machineId:", id);
2024-09-03 14:10:36 +08:00
};