Merge pull request #1156 from Hexastack/feat/add-chat-module-dep-to-helpers

feat: add chat module import in helpers module
This commit is contained in:
Med Marrouchi 2025-06-23 08:44:45 +01:00 committed by GitHub
commit d15e66254d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,6 +10,7 @@ import { HttpModule } from '@nestjs/axios';
import { Global, Module } from '@nestjs/common';
import { InjectDynamicProviders } from 'nestjs-dynamic-providers';
import { ChatModule } from '@/chat/chat.module';
import { CmsModule } from '@/cms/cms.module';
import { NlpModule } from '@/nlp/nlp.module';
@ -26,7 +27,7 @@ import { HelperService } from './helper.service';
'dist/.hexabot/custom/extensions/helpers/**/*.helper.js',
)
@Module({
imports: [HttpModule, NlpModule, CmsModule],
imports: [HttpModule, NlpModule, CmsModule, ChatModule],
controllers: [HelperController],
providers: [HelperService],
exports: [HelperService],