mirror of
https://github.com/vastxie/99AI.git
synced 2024-11-16 11:42:25 +08:00
29 lines
1.6 KiB
JavaScript
29 lines
1.6 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.BadwordsModule = void 0;
|
||
|
const common_1 = require("@nestjs/common");
|
||
|
const badwords_service_1 = require("./badwords.service");
|
||
|
const badwords_controller_1 = require("./badwords.controller");
|
||
|
const typeorm_1 = require("@nestjs/typeorm");
|
||
|
const badwords_entity_1 = require("./badwords.entity");
|
||
|
const violationLog_entity_1 = require("./violationLog.entity");
|
||
|
const user_entity_1 = require("../user/user.entity");
|
||
|
let BadwordsModule = class BadwordsModule {
|
||
|
};
|
||
|
BadwordsModule = __decorate([
|
||
|
(0, common_1.Global)(),
|
||
|
(0, common_1.Module)({
|
||
|
imports: [typeorm_1.TypeOrmModule.forFeature([badwords_entity_1.BadWordsEntity, violationLog_entity_1.ViolationLogEntity, user_entity_1.UserEntity])],
|
||
|
providers: [badwords_service_1.BadwordsService],
|
||
|
controllers: [badwords_controller_1.BadwordsController],
|
||
|
exports: [badwords_service_1.BadwordsService],
|
||
|
})
|
||
|
], BadwordsModule);
|
||
|
exports.BadwordsModule = BadwordsModule;
|