streamflix-api / src /shared /modules /upload /google-drive /google-drive.module.ts
Akshar2325
feat(google-drive-upload): add Google Drive integration for file uploads and HLS conversion
ffebaa3
Raw
History Blame
578 Bytes
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 {}