-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApp.js
More file actions
33 lines (28 loc) · 771 Bytes
/
App.js
File metadata and controls
33 lines (28 loc) · 771 Bytes
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
33
/**
* Primary file for the API
*/
// Dependencies
const server = require("./lib/Server");
// const Helper = require("./lib/Helper");
// const Config = require("./lib/Config");
const worker = require("./lib/Worker");
// Declare the app
class App {
// Init
constructor() {
// Start the server
server.init();
(async () => {
try {
// Start the log rotater
await worker.init();
// Send log to console in blue
console.log("\x1b[36m%s\x1b[0m", "Logger status: running")
} catch (e) {
console.error(e);
console.error("Logger status: terminated with error")
}
})();
}
}
module.exports = new App();