From a2ab3e8c3c3c9fafbbde8d29331db7678bb8b2c6 Mon Sep 17 00:00:00 2001 From: Collin Duncan <3679940+cgduncan7@users.noreply.github.com> Date: Tue, 27 Jun 2023 16:38:00 +0200 Subject: [PATCH] Adding repl --- src/repl.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/repl.ts diff --git a/src/repl.ts b/src/repl.ts new file mode 100644 index 0000000..0faa3c0 --- /dev/null +++ b/src/repl.ts @@ -0,0 +1,7 @@ +import { repl } from '@nestjs/core' +import { AppModule } from './app.module' + +async function bootstrap() { + await repl(AppModule) +} +bootstrap()