it0/packages/services/presence-service/src/api/controllers/health.controller.ts

12 lines
282 B
TypeScript

import { Controller, Get } from '@nestjs/common';
import { ApiTags } from '@nestjs/swagger';
@ApiTags('Health')
@Controller()
export class HealthController {
@Get()
health() {
return { status: 'ok', service: 'presence-service', timestamp: new Date().toISOString() };
}
}