sharkey/packages/backend/src/index.ts

14 lines
236 B
TypeScript
Raw Normal View History

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