Spaces:
Runtime error
Runtime error
| 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'; | |
| ({ | |
| imports: [ConfigModule.forFeature(boxStorageConfig)], | |
| controllers: [BoxStorageController], | |
| providers: [BoxStorageService], | |
| exports: [BoxStorageService], | |
| }) | |
| export class BoxStorageModule {} | |