From 1997a981105c9910d2d0a150adb39a6bfe706e01 Mon Sep 17 00:00:00 2001 From: Joseph Ditton Date: Fri, 29 Oct 2021 18:57:24 -0600 Subject: first commit --- src/main.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/main.ts (limited to 'src/main.ts') diff --git a/src/main.ts b/src/main.ts new file mode 100644 index 0000000..13cad38 --- /dev/null +++ b/src/main.ts @@ -0,0 +1,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(); -- cgit v1.2.3-70-g09d2