import type { AsyncRequestHandler } from '../types/http';

export class HealthController {
  show: AsyncRequestHandler = async (_req, res) => {
    res.json({
      status: 'ok',
      service: 'finance-agent-api',
      timestamp: new Date().toISOString(),
    });
  };
}
