2016-12-28 23:49:51 +01:00
|
|
|
/**
|
2023-10-20 02:01:02 +02:00
|
|
|
* Firefish Entry Point
|
2016-12-28 23:49:51 +01:00
|
|
|
*/
|
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
import { EventEmitter } from "node:events";
|
2024-02-21 14:23:24 +01:00
|
|
|
import { inspect } from "node:util";
|
2024-03-02 06:24:05 +01:00
|
|
|
import boot from "./boot/index.js";
|
2018-08-06 14:35:49 +02:00
|
|
|
|
2024-03-16 16:49:12 +01:00
|
|
|
Error.stackTraceLimit = Number.POSITIVE_INFINITY;
|
2022-02-27 03:07:39 +01:00
|
|
|
EventEmitter.defaultMaxListeners = 128;
|
2017-04-05 02:58:29 +02:00
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
boot().catch((err) => {
|
2024-02-21 14:23:24 +01:00
|
|
|
console.error(inspect(err));
|
2022-02-27 03:07:39 +01:00
|
|
|
});
|