mirror of
https://github.com/shadcn-ui/taxonomy
synced 2026-05-24 09:48:32 +00:00
8 lines
168 B
TypeScript
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,
|
|
})
|