Skip to content

Instantly share code, notes, and snippets.

@BetterProgramming
Created August 27, 2019 14:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BetterProgramming/f60a7a5ee2c0e6669661d7404412b703 to your computer and use it in GitHub Desktop.
Save BetterProgramming/f60a7a5ee2c0e6669661d7404412b703 to your computer and use it in GitHub Desktop.
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { MulterModule } from '@nestjs/platform-express';
@Module({
imports: [MulterModule.register({
dest: './files',
})],
controllers: [AppController],
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment