refactor(core): introduce an interface to switch between old and new connector integration implementations on the connectors (#5013)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Hrithikesh
2024-06-24 15:10:34 +05:30
committed by GitHub
parent b87840595d
commit e658899c14
103 changed files with 2153 additions and 683 deletions

View File

@ -1,6 +1,10 @@
pub mod api;
pub mod authentication;
pub mod authorization;
pub mod connector_integration_interface;
pub mod conversion_impls;
#[cfg(feature = "email")]
pub mod email;
pub mod encryption;
#[cfg(feature = "olap")]
pub mod jwt;
@ -10,9 +14,6 @@ pub mod pm_auth;
#[cfg(feature = "recon")]
pub mod recon;
#[cfg(feature = "email")]
pub mod email;
use std::sync::Arc;
use error_stack::ResultExt;