From b522eebc1b720b330469a1d6e62833b76dc76ad1 Mon Sep 17 00:00:00 2001 From: Kevsl Date: Mon, 16 Sep 2024 13:43:46 +0200 Subject: [PATCH] added ci --- src/app.controller.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app.controller.ts b/src/app.controller.ts index 77e41b1..52a8d67 100644 --- a/src/app.controller.ts +++ b/src/app.controller.ts @@ -1,4 +1,4 @@ -import { Controller, Get, Redirect } from '@nestjs/common'; +import { Controller, Get } from '@nestjs/common'; import { AppService } from './app.service'; @Controller() @@ -6,7 +6,6 @@ export class AppController { constructor(private readonly appService: AppService) {} @Get() - @Redirect('https://paypal.com') getHello(): string { return 'Hello'; }