streamflix-api / src /shared /modules /upload /box-storage /box-storage.module.ts
Akshar2325
feat(box-storage): add box.com cloud storage integration
c5b7daf
Raw
History Blame
473 Bytes
import { Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
import { BoxStorageController } from './box-storage.controller';
import { BoxStorageService } from './box-storage.service';
import boxStorageConfig from './box-storage.config';
@Module({
imports: [ConfigModule.forFeature(boxStorageConfig)],
controllers: [BoxStorageController],
providers: [BoxStorageService],
exports: [BoxStorageService],
})
export class BoxStorageModule {}