import { NestFactory } from "@nestjs/core"; import { AppModule } from "@/app.module"; import openApi from "@/cvdocs/openApi"; async function bootstrap() { const app = await NestFactory.create(AppModule); await openApi(app); await app.listen(3000); } bootstrap();