diff --git a/api/src/app.controller.ts b/api/src/app.controller.ts index 0f30106..1b4ac4f 100644 --- a/api/src/app.controller.ts +++ b/api/src/app.controller.ts @@ -105,4 +105,9 @@ export class AppController { return error; } } + + @Get() + getHello(): string { + return this.appService.getHello(); + } }