correction spec.ts file

This commit is contained in:
Hanim 2025-09-12 12:03:41 +02:00
parent b0f3214a34
commit ae6ee552c8

View File

@ -9,4 +9,9 @@ export class AppController {
getOverView() {
return this.appService.getOverView();
}
@Get('hello')
getHello(): string {
return this.appService.getHello();
}
}