autobaan/src/repl.ts
2023-06-27 16:38:00 +02:00

7 lines
144 B
TypeScript

import { repl } from '@nestjs/core'
import { AppModule } from './app.module'
async function bootstrap() {
await repl(AppModule)
}
bootstrap()