mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-28 15:26:44 -06:00
13 lines
207 B
TypeScript
13 lines
207 B
TypeScript
/**
|
|
* Misskey Entry Point!
|
|
*/
|
|
|
|
Error.stackTraceLimit = Infinity;
|
|
|
|
require('events').EventEmitter.defaultMaxListeners = 128;
|
|
|
|
import boot from './boot/index';
|
|
|
|
export default function() {
|
|
return boot();
|
|
}
|