Skip to content

Instantly share code, notes, and snippets.

@illusi03
Last active May 3, 2024 23:39
Show Gist options
  • Save illusi03/fa7a41079265d90a21f685b56a9ca241 to your computer and use it in GitHub Desktop.
Save illusi03/fa7a41079265d90a21f685b56a9ca241 to your computer and use it in GitHub Desktop.
Article Medium - Enhanced validation in Nest.js - STEP-1
import { Body, Controller, Post } from '@nestjs/common';
import { AppService } from './app.service';
@Controller()
export class AppController {
constructor(private readonly appService: AppService) {}
@Post('/customer')
registerCustomer(@Body() body: any) {
return body;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment