taxonomy/lib/stripe.ts
2023-04-29 20:33:23 +04:00

8 lines
168 B
TypeScript

import Stripe from "stripe"
import { env } from "@/env.mjs"
export const stripe = new Stripe(env.STRIPE_API_KEY, {
apiVersion: "2022-11-15",
typescript: true,
})