autobaan/src/repl.ts

8 lines
144 B
TypeScript
Raw Normal View History

2023-06-27 16:38:00 +02:00
import { repl } from '@nestjs/core'
import { AppModule } from './app.module'
async function bootstrap() {
await repl(AppModule)
}
bootstrap()