mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-30 01:27:31 +08:00
refactor(router): Remove payment_methods_v2 and customer_v2 feature flag (#8236)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -71,14 +71,14 @@ pub mod relay;
|
||||
#[cfg(feature = "olap")]
|
||||
pub mod process_tracker;
|
||||
|
||||
#[cfg(all(feature = "v2", feature = "payment_methods_v2"))]
|
||||
#[cfg(feature = "v2")]
|
||||
pub mod proxy;
|
||||
|
||||
#[cfg(feature = "dummy_connector")]
|
||||
pub use self::app::DummyConnector;
|
||||
#[cfg(feature = "v2")]
|
||||
pub use self::app::PaymentMethodSession;
|
||||
#[cfg(all(feature = "oltp", feature = "v2", feature = "payment_methods_v2"))]
|
||||
#[cfg(all(feature = "oltp", feature = "v2"))]
|
||||
pub use self::app::Proxy;
|
||||
#[cfg(all(feature = "olap", feature = "recon", feature = "v1"))]
|
||||
pub use self::app::Recon;
|
||||
@ -95,11 +95,7 @@ pub use self::app::{
|
||||
pub use self::app::{Blocklist, Organization, Routing, Verify, WebhookEvents};
|
||||
#[cfg(feature = "payouts")]
|
||||
pub use self::app::{PayoutLink, Payouts};
|
||||
#[cfg(all(
|
||||
feature = "stripe",
|
||||
any(feature = "v1", feature = "v2"),
|
||||
not(feature = "customer_v2")
|
||||
))]
|
||||
#[cfg(all(feature = "stripe", feature = "v1"))]
|
||||
pub use super::compatibility::stripe::StripeApis;
|
||||
#[cfg(feature = "olap")]
|
||||
pub use crate::analytics::routes::{self as analytics, Analytics};
|
||||
|
||||
Reference in New Issue
Block a user