feat: Apple pay session flow integrate (#138)

This commit is contained in:
Sangamesh Kulkarni
2022-12-14 17:59:27 +05:30
committed by GitHub
parent 1f0d1deb2b
commit 8b8ff8188f
29 changed files with 495 additions and 33 deletions

View File

@ -1,5 +1,6 @@
pub mod aci;
pub mod adyen;
pub mod applepay;
pub mod authorizedotnet;
pub mod braintree;
pub mod checkout;
@ -7,6 +8,6 @@ pub mod klarna;
pub mod stripe;
pub use self::{
aci::Aci, adyen::Adyen, authorizedotnet::Authorizedotnet, braintree::Braintree,
checkout::Checkout, klarna::Klarna, stripe::Stripe,
aci::Aci, adyen::Adyen, applepay::Applepay, authorizedotnet::Authorizedotnet,
braintree::Braintree, checkout::Checkout, klarna::Klarna, stripe::Stripe,
};