mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-23 10:27:28 -07:00
13 lines
238 B
TypeScript
13 lines
238 B
TypeScript
/**
|
|
* Misskey Entry Point!
|
|
*/
|
|
|
|
import { EventEmitter } from "node:events";
|
|
import boot from "./boot/index.js";
|
|
|
|
Error.stackTraceLimit = Infinity;
|
|
EventEmitter.defaultMaxListeners = 128;
|
|
|
|
boot().catch((err) => {
|
|
console.error(err);
|
|
});
|