From a694af97c69dad3b33a49171888816b13e92505c Mon Sep 17 00:00:00 2001 From: Joelbrit0 Date: Thu, 29 Jan 2026 14:48:57 -0300 Subject: [PATCH] feat: add app controller with version and health check endpoints --- src/app.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.controller.ts b/src/app.controller.ts index 59d927a..5ec75ab 100644 --- a/src/app.controller.ts +++ b/src/app.controller.ts @@ -14,7 +14,7 @@ export class AppController { @Get('health') @ApiOperation({ summary: 'Health check' }) healthCheck() { - return { status: 'SIMPLIFIQUE HOME CENTER 2023' }; + return { status: 'SIMPLIFIQUE HOME CENTER 202' }; } }