mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-17 07:27:36 -07: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();
|
|
}
|