Files
KIS-TOiR/server/src/health/health.controller.ts
2026-03-25 21:01:31 +03:00

12 lines
237 B
TypeScript

import { Controller, Get } from '@nestjs/common';
import { Public } from '../auth/decorators/public.decorator';
@Public()
@Controller('health')
export class HealthController {
@Get()
getHealth() {
return { status: 'ok' };
}
}