Files
mono/components/notificator2/dist/modules/notification.module.js
T
2025-07-03 18:03:31 +05:00

25 lines
1.4 KiB
JavaScript

"use strict";
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.NotificationModule = void 0;
const common_1 = require("@nestjs/common");
const config_1 = require("@nestjs/config");
const novu_service_1 = require("../services/novu.service");
const notification_controller_1 = require("./notification.controller");
let NotificationModule = class NotificationModule {
};
exports.NotificationModule = NotificationModule;
exports.NotificationModule = NotificationModule = __decorate([
(0, common_1.Module)({
imports: [config_1.ConfigModule],
controllers: [notification_controller_1.NotificationController],
providers: [novu_service_1.NovuService],
exports: [novu_service_1.NovuService],
})
], NotificationModule);
//# sourceMappingURL=notification.module.js.map