mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-05-24 14:46:57 +00: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();
|