We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0873d2 commit 1661db5Copy full SHA for 1661db5
apps/api/src/app.controller.ts
@@ -24,10 +24,10 @@ export class AppController {
24
}
25
26
27
- @Get('nice')
+ @Get('world')
28
getNice() {
29
return {
30
- message: 'Nice Nice',
+ message: this.appService.getWorld(),
31
32
33
apps/api/src/app.service.ts
@@ -7,4 +7,8 @@ export class AppService {
7
getHello(): string {
8
return `Hello World World version ${pk.version} `
9
10
+
11
+ getWorld(): string {
12
+ return `World version ${pk.version} `
13
+ }
14
0 commit comments