Files
NapCatQQ/src/common/utils/system.ts
linyuchen 14e6c6d9a6 NapCatQQ
2024-04-15 00:09:08 +08:00

9 lines
312 B
TypeScript

import os from 'node:os';
import path from 'node:path';
export const systemPlatform = os.platform();
export const systemVersion = os.release();
export const hostname = os.hostname();
const homeDir = os.homedir();
export const downloadsPath = path.join(homeDir, 'Downloads');
export const systemName = os.type();