Skip to content

Commit

Permalink
Use base connection class for different connection types
Browse files Browse the repository at this point in the history
  • Loading branch information
andris9 committed Mar 12, 2024
1 parent 480a906 commit b2e44c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions lib/api-client/base-client.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
'use strict';

const crypto = require('crypto');
const logger = require('../logger');
const { REDIS_PREFIX } = require('../consts');

Expand Down
2 changes: 1 addition & 1 deletion lib/imap-connection.js
Original file line number Diff line number Diff line change
Expand Up @@ -3672,4 +3672,4 @@ class IMAPConnection extends BaseClient {
}
}

module.exports.Connection = IMAPConnection;
module.exports = { IMAPConnection };

0 comments on commit b2e44c7

Please sign in to comment.