NapCatQQ/launcher/loadNapCat.js
2024-09-04 23:12:38 +08:00

5 lines
173 B
JavaScript

const path = require('path');
const CurrentPath = path.dirname(__filename);
(async () => {
await import("file://" + path.join(CurrentPath, './napcat/napcat.mjs'));
})();