Spaces:
Runtime error
Runtime error
Akshar2325
feat(google-drive-upload): add Google Drive integration for file uploads and HLS conversion
ffebaa3 | 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'; | |
| ({ | |
| imports: [ConfigModule.forFeature(googleDriveConfig), UploadCoreModule], | |
| controllers: [GoogleDriveController], | |
| providers: [GoogleDriveService], | |
| exports: [GoogleDriveService], | |
| }) | |
| export class GoogleDriveModule {} | |