Settings, encryption, logging

This commit is contained in:
Isaac
2022-07-16 22:18:50 +01:00
parent 97623f3203
commit 79462e83e6
10 changed files with 221 additions and 10 deletions

View File

@@ -72,9 +72,7 @@ process.on('unhandledRejection', error => {
log.error(error);
});
const client = new Client();
client.config = config;
client.log = log;
const client = new Client(config, log);
client.login().then(() => {
http(client);
});