This commit is contained in:
2026-01-08 21:36:15 +01:00
parent 05cf3bafd2
commit d689df0270
23 changed files with 25233 additions and 88 deletions

View File

@@ -14,8 +14,13 @@ export class HelloController {
return { status: 'ok' };
}
@Get()
@Get('hello')
getHello() {
return this.helloService.getHello();
}
@Get()
getRoot() {
return this.helloService.getHello();
}
}