2020-04-08 18:08:46 +02:00
|
|
|
const Manager = require('./Manager.js');
|
|
|
|
const options = require('./options.json');
|
|
|
|
|
|
|
|
new Manager(options)
|
2020-04-09 16:30:52 +02:00
|
|
|
.build();
|
2020-04-08 18:08:46 +02:00
|
|
|
|
|
|
|
process.on("unhandledRejection", (error) => {
|
|
|
|
console.error("Unhandled promise rejection:", error); //eslint-disable-line no-console
|
|
|
|
});
|