companion/@applications/api/dist/modules/voice/voice.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

27 lines
No EOL
1.1 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 { VoiceGateway } from './voice.gateway';
import { VoiceSessionStore } from './voice-session.store';
import { ChatModule } from '../chat/chat.module';
import { SessionModule } from '../session/session.module';
export class VoiceModule {
}
VoiceModule = _ts_decorate([
Module({
imports: [
ChatModule,
SessionModule
],
providers: [
VoiceGateway,
VoiceSessionStore
]
})
], VoiceModule);
//# sourceMappingURL=voice.module.js.map