@yolo-croket-dev/amqp-access 0.0.4-jun.0 → 0.0.4
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.
|
@@ -9,8 +9,6 @@ const microservices_1 = require("@nestjs/microservices");
|
|
|
9
9
|
const dotenv_1 = __importDefault(require("dotenv"));
|
|
10
10
|
dotenv_1.default.config();
|
|
11
11
|
const { AMQP_URL, NOTIFICATION_SERVICE } = process.env;
|
|
12
|
-
console.log('AMQP_URL', AMQP_URL);
|
|
13
|
-
console.log('NOTIFICATION_SERVICE', NOTIFICATION_SERVICE);
|
|
14
12
|
exports.NotifiactionServiceProvider = {
|
|
15
13
|
provide: 'NOTIFICATION_SERVICE_PROVIDER',
|
|
16
14
|
useFactory: () => microservices_1.ClientProxyFactory.create({
|
|
@@ -9,8 +9,6 @@ const microservices_1 = require("@nestjs/microservices");
|
|
|
9
9
|
const dotenv_1 = __importDefault(require("dotenv"));
|
|
10
10
|
dotenv_1.default.config();
|
|
11
11
|
const { AMQP_URL, ORDER_SERVER } = process.env;
|
|
12
|
-
console.log('AMQP_URL', AMQP_URL);
|
|
13
|
-
console.log('ORDER_SERVER', ORDER_SERVER);
|
|
14
12
|
exports.OrderServerProvider = {
|
|
15
13
|
provide: 'ORDER_SERVER_PROVIDER',
|
|
16
14
|
useFactory: () => microservices_1.ClientProxyFactory.create({
|
package/package.json
CHANGED
|
@@ -9,8 +9,6 @@ const microservices_1 = require("@nestjs/microservices");
|
|
|
9
9
|
const dotenv_1 = __importDefault(require("dotenv"));
|
|
10
10
|
dotenv_1.default.config();
|
|
11
11
|
const { AMQP_URL, USER_SERVICE } = process.env;
|
|
12
|
-
console.log('AMQP_URL', AMQP_URL);
|
|
13
|
-
console.log('USER_SERVICE', USER_SERVICE);
|
|
14
12
|
exports.UserServiceProvider = {
|
|
15
13
|
provide: 'USER_SERVICE_PROVIDER',
|
|
16
14
|
useFactory: () => microservices_1.ClientProxyFactory.create({
|