This commit is contained in:
Kevsl 2024-09-16 13:43:46 +02:00
parent 2ce50323a6
commit b522eebc1b

View File

@ -1,4 +1,4 @@
import { Controller, Get, Redirect } from '@nestjs/common'; import { Controller, Get } from '@nestjs/common';
import { AppService } from './app.service'; import { AppService } from './app.service';
@Controller() @Controller()
@ -6,7 +6,6 @@ export class AppController {
constructor(private readonly appService: AppService) {} constructor(private readonly appService: AppService) {}
@Get() @Get()
@Redirect('https://paypal.com')
getHello(): string { getHello(): string {
return 'Hello'; return 'Hello';
} }