yumechi-no-kuni/packages/backend/src/index.ts

12 lines
169 B
TypeScript
Raw Normal View History

2016-12-28 16:49:51 -06:00
/**
2017-01-02 15:09:17 -06:00
* Misskey Entry Point!
2016-12-28 16:49:51 -06:00
*/
Error.stackTraceLimit = Infinity;
2018-08-06 07:35:49 -05:00
require('events').EventEmitter.defaultMaxListeners = 128;
import boot from './boot/index';
2017-04-04 19:58:29 -05:00
2021-11-11 11:02:25 -06:00
boot();