fix: refactor AppService to ProductsService and implement product management methods
All checks were successful
Deploy NestJS API / build-and-push-deploy (push) Successful in 2m4s

This commit is contained in:
2026-01-05 19:15:40 -05:00
parent e2a008e9a9
commit 91f3e857a0

View File

@@ -14,7 +14,7 @@ export class AppController {
@Get('health')
@ApiOperation({ summary: 'Health check' })
healthCheck() {
return { status: 'ok v3' };
return { status: 'simplifique home center' };
}
}