mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 17:19:15 +08:00
initial commit
This commit is contained in:
18
crates/router/src/routes.rs
Normal file
18
crates/router/src/routes.rs
Normal file
@ -0,0 +1,18 @@
|
||||
mod admin;
|
||||
mod app;
|
||||
mod customers;
|
||||
mod health;
|
||||
mod mandates;
|
||||
mod metrics;
|
||||
mod payment_methods;
|
||||
pub(crate) mod payments;
|
||||
mod payouts;
|
||||
mod refunds;
|
||||
mod webhooks;
|
||||
|
||||
pub use self::app::{
|
||||
AppState, Customers, Health, Mandates, MerchantAccount, MerchantConnectorAccount,
|
||||
PaymentMethods, Payments, Payouts, Refunds, Webhooks,
|
||||
};
|
||||
#[cfg(feature = "stripe")]
|
||||
pub use super::compatibility::stripe::StripeApis;
|
||||
Reference in New Issue
Block a user