mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2025-03-17 01:01:06 +02: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();
|