import { Controller, Get } from '@nestjs/common';
import { SystemService } from './system.service';
@Controller('system')
export class SystemController {
  constructor(private readonly service: SystemService) {}
  @Get('health') health() { return this.service.health(); }
}
