mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 22:17:30 -07:00
94228778c9
* wip * wip * fix * clean up * Update tsconfig.json * Update activitypub.ts * wip
13 lines
236 B
TypeScript
13 lines
236 B
TypeScript
/**
|
|
* Misskey Entry Point!
|
|
*/
|
|
|
|
import { EventEmitter } from 'node:events';
|
|
import boot from './boot/index.js';
|
|
|
|
Error.stackTraceLimit = Infinity;
|
|
EventEmitter.defaultMaxListeners = 128;
|
|
|
|
boot().catch(err => {
|
|
console.error(err);
|
|
});
|