Spaces:
Runtime error
Runtime error
| import { Module } from '@nestjs/common'; | |
| import { ConfigModule } from '@nestjs/config'; | |
| import { FilestackController } from './filestack.controller'; | |
| import { FilestackService } from './filestack.service'; | |
| import filestackConfig from './filestack.config'; | |
| ({ | |
| imports: [ConfigModule.forFeature(filestackConfig)], | |
| controllers: [FilestackController], | |
| providers: [FilestackService], | |
| exports: [FilestackService], | |
| }) | |
| export class FilestackModule {} | |