Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
217 Bytes
import Stripe from 'stripe';
export const stripe = new Stripe(
process.env.STRIPE_SECRET_KEY ?? '',
{
apiVersion: '2023-08-16',
appInfo: {
name: 'Spotify-Clone',
version: '0.1.0'
}
}
);