mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-01 19:42:27 +08:00
feat(router): add kv implementation for address for payment flows (#2177)
This commit is contained in:
committed by
GitHub
parent
eb10aca631
commit
afff3e1789
5
crates/storage_impl/src/address.rs
Normal file
5
crates/storage_impl/src/address.rs
Normal file
@ -0,0 +1,5 @@
|
||||
use diesel_models::address::Address;
|
||||
|
||||
use crate::redis::kv_store::KvStorePartition;
|
||||
|
||||
impl KvStorePartition for Address {}
|
||||
@ -5,6 +5,7 @@ use diesel_models::{self as store};
|
||||
use error_stack::ResultExt;
|
||||
use masking::StrongSecret;
|
||||
use redis::{kv_store::RedisConnInterface, RedisStore};
|
||||
mod address;
|
||||
pub mod config;
|
||||
pub mod connection;
|
||||
pub mod database;
|
||||
|
||||
Reference in New Issue
Block a user