Commit 239ffe7a authored by Diego Iván's avatar Diego Iván
Browse files

eliminando ruta hello world

parent 07d4e244
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
import { Controller, Get } from '@nestjs/common';
import { Controller } from '@nestjs/common';
import { AppService } from './app.service';

@Controller()
export class AppController {
  constructor(private readonly appService: AppService) {}

  @Get()
  getHello(): string {
    return this.appService.getHello();
  }
}
+1 −5
Original line number Diff line number Diff line
import { Injectable } from '@nestjs/common';

@Injectable()
export class AppService {
  getHello(): string {
    return 'Hello World!';
  }
}
export class AppService {}