UNPKG
@codesled/stripe-payments
Version:
latest (1.0.2)
1.0.2
1.0.1
0.1.0
Simple Stripe checkout integration module from CodeSled
@codesled/stripe-payments
/
src
/
index.js
10 lines
(8 loc)
•
269 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
const
{ initStripe } =
require
(
"./stripeInstance"
);
const
createCheckoutSession =
require
(
"./createCheckoutSession"
);
const
verifyWebhookSignature =
require
(
"./webhooks"
);
module
.
exports
= { initStripe, createCheckoutSession, verifyWebhookSignature, };