refactor(storage_impl): Integrate the composite store from external crate (#1921)

This commit is contained in:
Sampras Lopes
2023-08-14 18:46:31 +05:30
committed by GitHub
parent b1e4e3883d
commit 9f199d9ab8
44 changed files with 490 additions and 445 deletions

View File

@ -1,9 +1,6 @@
#![allow(clippy::unwrap_used)]
use router::{
cache::{self},
configs::settings::Settings,
routes,
};
use router::{configs::settings::Settings, routes};
use storage_impl::redis::cache;
mod utils;

View File

@ -9,7 +9,7 @@ use router::{
};
use crate::{
connector_auth::{self},
connector_auth,
utils::{self, ConnectorActions, PaymentInfo},
};