mirror of
				https://github.com/juspay/hyperswitch.git
				synced 2025-11-01 02:57:02 +08:00 
			
		
		
		
	 944089d691
			
		
	
	944089d691
	
	
	
		
			
			Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com> Co-authored-by: Kashif <mohammed.kashif@juspay.in>
		
			
				
	
	
		
			11 lines
		
	
	
		
			275 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			275 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| pub mod payout_attempt;
 | |
| #[allow(clippy::module_inception)]
 | |
| pub mod payouts;
 | |
| 
 | |
| use diesel_models::{payout_attempt::PayoutAttempt, payouts::Payouts};
 | |
| 
 | |
| use crate::redis::kv_store::KvStorePartition;
 | |
| 
 | |
| impl KvStorePartition for Payouts {}
 | |
| impl KvStorePartition for PayoutAttempt {}
 |