streamflix-api / src /shared /modules /upload /idrive-e2-storage /idrive-e2-storage.module.ts
Akshar2325
feat(idrive-e2-storage): add idrive e2 storage integration
5d53367
Raw
History Blame
531 Bytes
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 {}