import { Controller, Get } from '@nestjs/common';

@Controller('health')
export class HealthController {
  @Get()
  health() {
    return { message: 'Service is healthy', data: { status: 'ok', timestamp: new Date().toISOString() } };
  }
}
