This repository has been archived on 2025-09-16. You can view files and clone it, but cannot push or open issues or pull requests.
Files
freezone/portal/src/components/common/payments/mod.rs
Timur Gordon c1ea9483d7 refactor wip
2025-06-28 16:40:54 +02:00

9 lines
350 B
Rust

//! 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};