Skip to content
Snippets Groups Projects

Development to testing

Merged Ghost User requested to merge Development into testing
1 file
+ 6
1
Compare changes
  • Side-by-side
  • Inline
+ 6
1
import { Controller, Get } from '@nestjs/common';
import { Controller, Get, Param, Res } from '@nestjs/common';
import { AppService } from './app.service';
import { AppService } from './app.service';
@Controller()
@Controller()
@@ -9,4 +9,9 @@ export class AppController {
@@ -9,4 +9,9 @@ export class AppController {
getHello(): string {
getHello(): string {
return this.appService.getHello();
return this.appService.getHello();
}
}
 
 
@Get('images/:id')
 
returnImage(@Param('id') id, @Res() res) {
 
return;
 
}
}
}
Loading