From f3b37a4699dfffcb8dc3736d831c38c231ac6380 Mon Sep 17 00:00:00 2001 From: CleilsonAndrade Date: Mon, 19 Aug 2024 12:31:23 -0300 Subject: [PATCH] style: removed semi-collum --- src/app/app.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/app.controller.ts b/src/app/app.controller.ts index 3fcb382..90734fb 100644 --- a/src/app/app.controller.ts +++ b/src/app/app.controller.ts @@ -5,7 +5,7 @@ import { AppService } from './app.service'; @ApiTags('Default') @Controller() export class AppController { - constructor(private readonly appService: AppService) { } + constructor(private readonly appService: AppService) {} @Get() getHello(): string {