Skip to content
This repository has been archived by the owner on Mar 23, 2024. It is now read-only.

Commit

Permalink
ci: test backend CI
Browse files Browse the repository at this point in the history
  • Loading branch information
velenyx committed Sep 8, 2023
1 parent 58fd212 commit 8d63838
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions server/src/main.ts
Original file line number Diff line number Diff line change
@@ -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<void> {
try {
Expand Down

0 comments on commit 8d63838

Please sign in to comment.