blob: db1b53f51b559a7ddd334a77e26f25db07761c03 (
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/index';
export default function() {
return boot();
}
|