mirror of
https://github.com/vastxie/99AI.git
synced 2025-09-17 17:26:38 +08:00
25 lines
1.3 KiB
JavaScript
25 lines
1.3 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.PluginModule = void 0;
|
|
const common_1 = require("@nestjs/common");
|
|
const typeorm_1 = require("@nestjs/typeorm");
|
|
const plugin_controller_1 = require("./plugin.controller");
|
|
const plugin_entity_1 = require("./plugin.entity");
|
|
const plugin_service_1 = require("./plugin.service");
|
|
let PluginModule = class PluginModule {
|
|
};
|
|
PluginModule = __decorate([
|
|
(0, common_1.Module)({
|
|
imports: [typeorm_1.TypeOrmModule.forFeature([plugin_entity_1.PluginEntity])],
|
|
controllers: [plugin_controller_1.PluginController],
|
|
providers: [plugin_service_1.PluginService],
|
|
})
|
|
], PluginModule);
|
|
exports.PluginModule = PluginModule;
|