mirror of
https://github.com/sim1222/misskey.git
synced 2025-06-25 21:28:00 +09:00
12 lines
169 B
TypeScript
12 lines
169 B
TypeScript
/**
|
|
* Misskey Entry Point!
|
|
*/
|
|
|
|
Error.stackTraceLimit = Infinity;
|
|
|
|
require('events').EventEmitter.defaultMaxListeners = 128;
|
|
|
|
import boot from './boot/index';
|
|
|
|
boot();
|