blob: c4a1088c2e238ec8c8872e7a26dd49c13cf79a22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/**
* Misskey Entry Point!
*/
Error.stackTraceLimit = Infinity;
require('events').EventEmitter.defaultMaxListeners = 128;
import boot from './boot';
export default function() {
return boot();
}
|