-
Notifications
You must be signed in to change notification settings - Fork 1
/
launcher.js
22 lines (21 loc) · 1.92 KB
/
launcher.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
process.on("unhandledRejection", (...args) => {
console.log(...args);
console.log(args[0].headers);
});
const launch = async () => {
require("dotenv").config();
require("module-alias/register");
if (process.env.ANIMATE == true)
await require("@utils/animate.js")(`
██╗░░░░░░█████╗░██╗░░░██╗███╗░░██╗░█████╗░██╗░░██╗███████╗██████╗░░░░░░░░░██╗░██████╗
██║░░░░░██╔══██╗██║░░░██║████╗░██║██╔══██╗██║░░██║██╔════╝██╔══██╗░░░░░░░░██║██╔════╝
██║░░░░░███████║██║░░░██║██╔██╗██║██║░░╚═╝███████║█████╗░░██████╔╝░░░░░░░░██║╚█████╗░
██║░░░░░██╔══██║██║░░░██║██║╚████║██║░░██╗██╔══██║██╔══╝░░██╔══██╗░░░██╗░░██║░╚═══██╗
███████╗██║░░██║╚██████╔╝██║░╚███║╚█████╔╝██║░░██║███████╗██║░░██║██╗╚█████╔╝██████╔╝
╚══════╝╚═╝░░╚═╝░╚═════╝░╚═╝░░╚══╝░╚════╝░╚═╝░░╚═╝╚══════╝╚═╝░░╚═╝╚═╝░╚════╝░╚═════╝░
`);
require("@main/sharder.js");
require("@root/clients/manager/index.js");
//require("@utils/webServer/server.js");
};
launch();