-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
32 lines (29 loc) · 2.66 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//══════════════════════════════════════════════════════════════════════════════
// ■ Reddit-Poster (reddit-poster/index.js)
//┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈
// Reddit posting bot.
//══════════════════════════════════════════════════════════════════════════════
const log = require("./utils/log")("Main");
//──────────────────────────────────────────────────────────────────────────────
// ● Main
//──────────────────────────────────────────────────────────────────────────────
function main() {
log.info("Bismi'Allah! Salam!");
log.debug("This is the main function for the bot.");
log.debug("The project is ready for the initial commit!");
log.warn("Take care!");
log.error("Learn from errors!");
log.info("Let's go! Incha'Allah!");
}
//──────────────────────────────────────────────────────────────────────────────
// ● Catch-Uncaught-Exceptions
//──────────────────────────────────────────────────────────────────────────────
process.on("uncaughtException", (err) => {
log.error("Uncaught exception.", err);
process.exit(1);
});
//──────────────────────────────────────────────────────────────────────────────
// ► Run
//──────────────────────────────────────────────────────────────────────────────
process.stdout.write("\x1Bc");
main();