Skip to content
Snippets Groups Projects
Commit 79ca58a9 authored by Lukáš Kratochvíl's avatar Lukáš Kratochvíl
Browse files

fix: deleted root Hello world example

parent 2ae75b98
No related branches found
No related tags found
No related merge requests found
import { Controller, Get } from '@nestjs/common'; import { Controller } from '@nestjs/common';
import { AppService } from './app.service'; import { AppService } from './app.service';
@Controller() @Controller()
export class AppController { export class AppController {
constructor(private readonly appService: AppService) {} constructor(private readonly appService: AppService) {}
@Get()
getHello(): string {
return this.appService.getHello();
}
} }
import { Injectable } from '@nestjs/common'; import { Injectable } from '@nestjs/common';
@Injectable() @Injectable()
export class AppService { export class AppService {}
getHello(): string {
return 'Hello World!';
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment