autobaan/src/repl.ts

11 lines
205 B
TypeScript
Raw Normal View History

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