File size: 531 Bytes
5d53367
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 {}