mirror of
https://github.com/hotomoe/hotomoe
synced 2025-01-13 13:22:52 +09:00
0e4a111f81
Resolve #7779
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();
|