mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
11 lines
169 B
TypeScript
11 lines
169 B
TypeScript
/**
|
|
* Misskey Entry Point!
|
|
*/
|
|
|
|
Error.stackTraceLimit = Infinity;
|
|
|
|
require('events').EventEmitter.defaultMaxListeners = 128;
|
|
|
|
import boot from './boot/index';
|
|
|
|
boot();
|