diff options
author | Joseph Ditton <jditton.atomic@gmail.com> | 2021-10-29 18:57:24 -0600 |
---|---|---|
committer | Joseph Ditton <jditton.atomic@gmail.com> | 2021-10-29 18:57:24 -0600 |
commit | 1997a981105c9910d2d0a150adb39a6bfe706e01 (patch) | |
tree | 8a92d9d944a9597f509cb3512c72a3285e073d35 /src/main.ts | |
download | locchat-1997a981105c9910d2d0a150adb39a6bfe706e01.tar.gz locchat-1997a981105c9910d2d0a150adb39a6bfe706e01.zip |
first commit
Diffstat (limited to 'src/main.ts')
-rw-r--r-- | src/main.ts | 8 |
1 files changed, 8 insertions, 0 deletions
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(); |