2023-06-27 16:38:00 +02:00
|
|
|
import { repl } from '@nestjs/core'
|
2023-06-29 10:32:09 +02:00
|
|
|
|
2023-06-27 16:38:00 +02:00
|
|
|
import { AppModule } from './app.module'
|
2024-04-09 23:19:57 +02:00
|
|
|
import { setDefaults } from './common/dayjs'
|
2023-06-27 16:38:00 +02:00
|
|
|
|
|
|
|
|
async function bootstrap() {
|
2024-04-09 23:19:57 +02:00
|
|
|
setDefaults()
|
2023-06-27 16:38:00 +02:00
|
|
|
await repl(AppModule)
|
|
|
|
|
}
|
|
|
|
|
bootstrap()
|