1
0
mirror of https://github.com/hotomoe/hotomoe synced 2024-12-15 15:18:08 +09:00
hotomoe/src/index.ts

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();
}