mirror of
				https://github.com/juspay/hyperswitch.git
				synced 2025-10-31 10:06:32 +08:00 
			
		
		
		
	 640d0552f9
			
		
	
	640d0552f9
	
	
	
		
			
			Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com> Co-authored-by: Jagan <jaganelavarasan@gmail.com>
		
			
				
	
	
		
			32 lines
		
	
	
		
			850 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			850 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #[cfg(feature = "v1")]
 | |
| pub mod incoming;
 | |
| #[cfg(feature = "v2")]
 | |
| mod incoming_v2;
 | |
| #[cfg(feature = "v1")]
 | |
| mod network_tokenization_incoming;
 | |
| #[cfg(feature = "v1")]
 | |
| mod outgoing;
 | |
| #[cfg(feature = "v2")]
 | |
| mod outgoing_v2;
 | |
| #[cfg(all(feature = "revenue_recovery", feature = "v2"))]
 | |
| pub mod recovery_incoming;
 | |
| pub mod types;
 | |
| pub mod utils;
 | |
| #[cfg(feature = "olap")]
 | |
| pub mod webhook_events;
 | |
| 
 | |
| #[cfg(feature = "v1")]
 | |
| pub(crate) use self::{
 | |
|     incoming::{incoming_webhooks_wrapper, network_token_incoming_webhooks_wrapper},
 | |
|     outgoing::{
 | |
|         create_event_and_trigger_outgoing_webhook, get_outgoing_webhook_request,
 | |
|         trigger_webhook_and_raise_event,
 | |
|     },
 | |
| };
 | |
| #[cfg(feature = "v2")]
 | |
| pub(crate) use self::{
 | |
|     incoming_v2::incoming_webhooks_wrapper, outgoing_v2::create_event_and_trigger_outgoing_webhook,
 | |
| };
 | |
| 
 | |
| const MERCHANT_ID: &str = "merchant_id";
 |