もう2023年になったので、今さらNestJSに入門しようと思う - その4

前回 takasehiromichiex.com コントローラ POSTを受け取るメソッドも定義してみましょう。 src/cats/cats.controller.ts import { Controller, Get, Post } from '@nestjs/common'; @Controller('cats') export class CatsController { @Get() hello(): string { return 'hello!'; } @Post() create(): string { return 't…