Sharkey/packages/backend/src/index.ts

14 lines
236 B
TypeScript
Raw Normal View History

2016-12-29 00:49:51 +02:00
/**
2017-01-02 23:09:17 +02:00
* Misskey Entry Point!
2016-12-29 00:49:51 +02:00
*/
import { EventEmitter } from 'node:events';
import boot from './boot/index.js';
2018-08-06 15:35:49 +03:00
Error.stackTraceLimit = Infinity;
EventEmitter.defaultMaxListeners = 128;
2017-04-05 03:58:29 +03:00
boot().catch(err => {
console.error(err);
});