@yolo-croket-dev/amqp-access 0.0.2 → 0.0.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/package.json
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare class
|
|
1
|
+
export declare class AmqpUserServiceModule {
|
|
2
2
|
}
|
|
@@ -6,13 +6,13 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
6
6
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
7
|
};
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
-
exports.
|
|
9
|
+
exports.AmqpUserServiceModule = void 0;
|
|
10
10
|
const common_1 = require("@nestjs/common");
|
|
11
11
|
const amqp_user_service_provider_1 = require("./amqp.user-service.provider");
|
|
12
12
|
const amqp_user_service_service_1 = require("./amqp.user-service.service");
|
|
13
|
-
let
|
|
13
|
+
let AmqpUserServiceModule = class AmqpUserServiceModule {
|
|
14
14
|
};
|
|
15
|
-
|
|
15
|
+
AmqpUserServiceModule = __decorate([
|
|
16
16
|
(0, common_1.Module)({
|
|
17
17
|
providers: [
|
|
18
18
|
amqp_user_service_provider_1.UserServiceProvider,
|
|
@@ -23,5 +23,5 @@ AmqpNotificationServiceModule = __decorate([
|
|
|
23
23
|
amqp_user_service_service_1.AmqpUserService,
|
|
24
24
|
],
|
|
25
25
|
})
|
|
26
|
-
],
|
|
27
|
-
exports.
|
|
26
|
+
], AmqpUserServiceModule);
|
|
27
|
+
exports.AmqpUserServiceModule = AmqpUserServiceModule;
|