From 8d6383847015445c863e82da57ad729845f6ccc2 Mon Sep 17 00:00:00 2001 From: Sivritkin Dmitriy Date: Sat, 9 Sep 2023 02:58:44 +0300 Subject: [PATCH] ci: test backend CI --- server/src/main.ts | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/server/src/main.ts b/server/src/main.ts index 33d5590a3..77d6f82ab 100644 --- a/server/src/main.ts +++ b/server/src/main.ts @@ -1,12 +1,18 @@ -import { NestFactory } from '@nestjs/core'; -import { DocumentBuilder, SwaggerModule } from '@nestjs/swagger'; +import {NestFactory} from '@nestjs/core'; +import { + DocumentBuilder, + SwaggerModule +} from '@nestjs/swagger'; import * as bodyParser from 'body-parser'; // import { JwtAuthGuard } from "./auth/jwt-auth.guard"; // import { ValidationPipe } from "./pipes/validation.pipe"; import cookieParser from 'cookie-parser'; -import { AsyncApiDocumentBuilder, AsyncApiModule } from 'nestjs-asyncapi'; +import { + AsyncApiDocumentBuilder, + AsyncApiModule +} from 'nestjs-asyncapi'; -import { AppModule } from './app.module'; +import {AppModule} from './app.module'; async function start(): Promise { try {