Files
SvelteKitSaasBoilerplate/src/lib/utils/stripe.ts
T
2024-09-17 19:30:38 +01:00

5 lines
137 B
TypeScript

import Stripe from 'stripe'
import { STRIPE_SECRET_KEY } from '$env/static/private'
export const stripe = new Stripe(STRIPE_SECRET_KEY)