8 lines
144 B
TypeScript
8 lines
144 B
TypeScript
|
|
import { repl } from '@nestjs/core'
|
||
|
|
import { AppModule } from './app.module'
|
||
|
|
|
||
|
|
async function bootstrap() {
|
||
|
|
await repl(AppModule)
|
||
|
|
}
|
||
|
|
bootstrap()
|