companion/@applications/api/dist/modules/session/session.module.js
Claude Code 0bc056d211 arch(applications): 🏗️ Refactor application imports and file structure
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-04-01 23:54:15 -07:00

35 lines
No EOL
1.4 KiB
JavaScript

function _ts_decorate(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;
}
import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { ConversationSessionEntity } from './entities/conversation-session.entity';
import { ConversationMessageEntity } from './entities/conversation-message.entity';
import { SessionService } from './session.service';
import { SessionController } from './session.controller';
export class SessionModule {
}
SessionModule = _ts_decorate([
Module({
imports: [
TypeOrmModule.forFeature([
ConversationSessionEntity,
ConversationMessageEntity
])
],
controllers: [
SessionController
],
providers: [
SessionService
],
exports: [
SessionService
]
})
], SessionModule);
//# sourceMappingURL=session.module.js.map