File size: 578 Bytes
ffebaa3
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
import { GoogleDriveController } from './google-drive.controller';
import { GoogleDriveService } from './google-drive.service';
import { UploadCoreModule } from 'src/core/upload-core/upload-core.module';
import googleDriveConfig from './google-drive.config';

@Module({
  imports: [ConfigModule.forFeature(googleDriveConfig), UploadCoreModule],
  controllers: [GoogleDriveController],
  providers: [GoogleDriveService],
  exports: [GoogleDriveService],
})
export class GoogleDriveModule {}