import { Module } from '@nestjs/common'; import { ConfigModule } from '@nestjs/config'; import { IdriveE2StorageController } from './idrive-e2-storage.controller'; import { IdriveE2StorageService } from './idrive-e2-storage.service'; import idriveE2StorageConfig from './idrive-e2-storage.config'; @Module({ imports: [ConfigModule.forFeature(idriveE2StorageConfig)], controllers: [IdriveE2StorageController], providers: [IdriveE2StorageService], exports: [IdriveE2StorageService], }) export class IdriveE2StorageModule {}