aboutsummaryrefslogtreecommitdiff
path: root/src/main.ts
blob: 13cad38cff92aa3b3d3ef6232306e450cadf5713 (plain)
1
2
3
4
5
6
7
8
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';

async function bootstrap() {
  const app = await NestFactory.create(AppModule);
  await app.listen(3000);
}
bootstrap();