Sharkey/packages/backend/src/index.ts

14 lines
236 B
TypeScript
Raw Normal View History

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