customers: Added ephemeral key authentication for customer retrieve (#89)

This commit is contained in:
Kartikeya Hegde
2022-12-09 17:58:04 +05:30
committed by GitHub
parent 2aef3bccfb
commit 3d7d89172c
21 changed files with 214 additions and 41 deletions

View File

@ -1,6 +1,7 @@
mod admin;
mod app;
mod customers;
mod ephemeral_key;
mod health;
mod mandates;
mod metrics;
@ -11,7 +12,7 @@ mod refunds;
mod webhooks;
pub use self::app::{
AppState, Customers, Health, Mandates, MerchantAccount, MerchantConnectorAccount,
AppState, Customers, EphemeralKey, Health, Mandates, MerchantAccount, MerchantConnectorAccount,
PaymentMethods, Payments, Payouts, Refunds, Webhooks,
};
#[cfg(feature = "stripe")]