amqplib-init 1.1.2 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import url from "url";
|
|
2
1
|
const amqp = require('amqplib');
|
|
3
2
|
const shelljs = require('shelljs');
|
|
4
3
|
const chalk = require('chalk-style');
|
|
5
4
|
const Base64 = require('js-base64').Base64;
|
|
6
5
|
const querystring = require('querystring');
|
|
7
6
|
const shell = require('shelljs');
|
|
7
|
+
const url = require('url');
|
|
8
8
|
|
|
9
9
|
const sleep = (time) => {
|
|
10
10
|
return new Promise(resolve => {
|