Merge pull request #330 from Hexastack/feat/plugin-http-module

feat: add http module for plugins
This commit is contained in:
Med Marrouchi 2024-11-13 01:27:05 +00:00 committed by GitHub
commit adcfa94675
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,6 +6,7 @@
* 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file).
*/
import { HttpModule } from '@nestjs/axios';
import { Global, Module } from '@nestjs/common';
import { MongooseModule } from '@nestjs/mongoose';
import { InjectDynamicProviders } from 'nestjs-dynamic-providers';
@ -40,6 +41,7 @@ import { PluginService } from './plugins.service';
CmsModule,
AttachmentModule,
ChatModule,
HttpModule,
],
providers: [PluginService],
exports: [PluginService],