repl.ts 149 B

1234567
  1. import { repl } from '@nestjs/core';
  2. import { AppModule } from './app.module';
  3. async function bootstrap() {
  4. await repl(AppModule);
  5. }
  6. bootstrap();