feat(mjs): added crypto imports

This commit is contained in:
Jan Prochazka
2024-05-20 19:48:21 +02:00
parent 153f40f13e
commit 7d984d8faf
15 changed files with 15 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
const crypto = require('crypto');
const { fork } = require('child_process');
const { handleProcessCommunication } = require('./processComm');
const processArgs = require('../utility/processArgs');

View File

@@ -1,3 +1,4 @@
const crypto = require('crypto');
const AsyncLock = require('async-lock');
const fs = require('fs-extra');

View File

@@ -1,3 +1,4 @@
const crypto = require('crypto');
const fs = require('fs');
const os = require('os');
const rimraf = require('rimraf');

View File

@@ -1,3 +1,4 @@
const crypto = require('crypto');
// const pacote = require('pacote');
const axios = require('axios');
// const tarballExtract = require('tarball-extract');

View File

@@ -1,3 +1,4 @@
const crypto = require('crypto');
const { getLogger } = require('dbgate-tools');
const { getSshTunnel } = require('./sshTunnel');
const logger = getLogger('sshTunnelProxy');