mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-12-18 00:29:04 +09:00
14 lines
207 B
TypeScript
14 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();
|
|
}
|