refactor wip

This commit is contained in:
Timur Gordon
2025-06-28 16:40:54 +02:00
parent 21dcc4d97a
commit c1ea9483d7
15 changed files with 2320 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
//! Generic payment components for Stripe and other payment providers
pub mod stripe_provider;
pub mod stripe_payment_form;
pub mod payment_intent;
pub use stripe_provider::{StripeProvider, PaymentIntentCreator};
pub use stripe_payment_form::StripePaymentForm;
pub use payment_intent::{PaymentIntentRequest, PaymentIntentResponse, PaymentMetadata};