import { Exclude, Expose } from 'class-transformer';
export class User {
id: string;
firstName: string;
import { NestFactory } from '@nestjs/core';
import { ValidationPipe } from '@nestjs/common';
import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);