NapCatQQ/packages/napcat-shell-loader/loadNapCat.js
手瓜一十雪 26e84653d6 Add ESLint config and update code style
Introduced a new eslint.config.js using neostandard and added related devDependencies. Updated codebase for consistent formatting, spacing, and function declarations. Minor refactoring and cleanup across multiple files to improve readability and maintain code style compliance.
2025-11-15 16:21:59 +08:00

6 lines
172 B
JavaScript

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