mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 00:49:42 +08:00
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
10 lines
254 B
Rust
10 lines
254 B
Rust
pub mod payment_attempt;
|
|
pub mod payment_intent;
|
|
|
|
use diesel_models::{payment_attempt::PaymentAttempt, PaymentIntent};
|
|
|
|
use crate::redis::kv_store::KvStorePartition;
|
|
|
|
impl KvStorePartition for PaymentIntent {}
|
|
impl KvStorePartition for PaymentAttempt {}
|