mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-04 05:59:48 +08:00
feat(db): implement MerchantKeyStoreInterface for MockDb (#1772)
This commit is contained in:
@ -120,6 +120,7 @@ pub struct MockDb {
|
||||
disputes: Arc<Mutex<Vec<storage::Dispute>>>,
|
||||
lockers: Arc<Mutex<Vec<storage::LockerMockUp>>>,
|
||||
mandates: Arc<Mutex<Vec<storage::Mandate>>>,
|
||||
merchant_key_store: Arc<Mutex<Vec<storage::MerchantKeyStore>>>,
|
||||
}
|
||||
|
||||
impl MockDb {
|
||||
@ -144,6 +145,7 @@ impl MockDb {
|
||||
disputes: Default::default(),
|
||||
lockers: Default::default(),
|
||||
mandates: Default::default(),
|
||||
merchant_key_store: Default::default(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user