companion/@applications/api/dist/modules/chat/chat.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.3 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 { ChatService } from './chat.service';
import { ChatController } from './chat.controller';
import { AiCoreClient } from '../../clients/ai-core.client';
import { ModelBossClient } from '../../clients/model-boss.client';
import { SessionModule } from '../session/session.module';
export class ChatModule {
}
ChatModule = _ts_decorate([
Module({
imports: [
SessionModule
],
controllers: [
ChatController
],
providers: [
ChatService,
AiCoreClient,
ModelBossClient
],
exports: [
AiCoreClient,
ModelBossClient
]
})
], ChatModule);
//# sourceMappingURL=chat.module.js.map