mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2024-11-16 21:09:23 +00:00
5 lines
173 B
JavaScript
5 lines
173 B
JavaScript
|
const path = require('path');
|
||
|
const CurrentPath = path.dirname(__filename);
|
||
|
(async () => {
|
||
|
await import("file://" + path.join(CurrentPath, './napcat/napcat.mjs'));
|
||
|
})();
|