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

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],