2023-02-15 17:03:08 +08:00
|
|
|
import { NestFactory } from '@nestjs/core'
|
|
|
|
import { AppModule } from './app.module'
|
2023-02-15 16:49:40 +08:00
|
|
|
|
|
|
|
async function bootstrap() {
|
2023-02-15 17:03:08 +08:00
|
|
|
const app = await NestFactory.create(AppModule)
|
|
|
|
await app.listen(3000)
|
2023-02-15 16:49:40 +08:00
|
|
|
}
|
2023-02-15 17:03:08 +08:00
|
|
|
bootstrap()
|