/**
 * Cron: Place holds — no-op stub (Stripe provider).
 *
 * With Stripe, holds are placed inline during checkout via
 * getPaymentProvider(env).placeHold(). No batch cron needed.
 *
 * This file remains so cron/index.ts compiles without changes.
 * Remove this cron entry from index.ts in a future cleanup pass.
 */

import type { CronEnv } from './deal-expiry.js';

export async function runPlaceJ5(_env: CronEnv): Promise<void> {
  // No-op: Stripe holds are placed at checkout time.
}
