sonarQ test on PR #1

Merged
andrej merged 15 commits from dev into main 2026-05-12 10:38:22 +00:00
Showing only changes of commit 10deefe8df - Show all commits

13
src/health.controller.ts Normal file
View File

@@ -0,0 +1,13 @@
import { Controller, Get } from '@nestjs/common';
import { HealthCheck, HealthCheckService } from '@nestjs/terminus';
@Controller('health')
export class HealthController {
constructor(private health: HealthCheckService) {}
@Get()
@HealthCheck()
check() {
return this.health.check([]);
}
}