import Stripe from "stripe"; let _stripe: Stripe | null = null; export function getStripe(): Stripe { if (!_stripe) { _stripe = new Stripe(process.env.STRIPE_SECRET_KEY as string, { apiVersion: "2026-02-25.clover", }); } return _stripe; }