Skip to content

Commit 2788b8b

Browse files
Update sample/14-mongoose-base/src/cats/cats.controller.ts
Co-authored-by: Kamil Mysliwiec <mail@kamilmysliwiec.com>
1 parent 2113d86 commit 2788b8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sample/14-mongoose-base/src/cats/cats.controller.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export class CatsController {
99

1010
@Post()
1111
async create(@Body() createCatDto: CreateCatDto) {
12-
return await this.catsService.create(createCatDto);
12+
return this.catsService.create(createCatDto);
1313
}
1414

1515
@Get()

0 commit comments

Comments
 (0)