diff --git a/src/app.controller.ts b/src/app.controller.ts index a132df1..9e9fc65 100644 --- a/src/app.controller.ts +++ b/src/app.controller.ts @@ -3,7 +3,7 @@ import { Controller, Get } from '@nestjs/common'; @Controller() export class AppController { @Get('/health-check') - helthCheck(): { status: string } { + healthCheck(): { status: string } { return { status: 'ok' }; }