mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-18 20:30:08 +08:00
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.
6 lines
172 B
JavaScript
6 lines
172 B
JavaScript
const path = require('path');
|
|
const CurrentPath = path.dirname(__filename);
|
|
(async () => {
|
|
await import('file://' + path.join(CurrentPath, './napcat/napcat.mjs'));
|
|
})();
|