FoundKey/packages/backend/src/index.ts

14 lines
241 B
TypeScript
Raw Normal View History

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