feat(config): add fetch endpoint for config table (#481)

This commit is contained in:
Kartikeya Hegde
2023-02-02 23:47:38 +05:30
committed by GitHub
parent 2939cff70e
commit 2735405aba
15 changed files with 216 additions and 6 deletions

View File

@ -1,5 +1,6 @@
pub mod admin;
pub mod app;
pub mod configs;
pub mod customers;
pub mod ephemeral_key;
pub mod health;
@ -12,8 +13,8 @@ pub mod refunds;
pub mod webhooks;
pub use self::app::{
AppState, Customers, EphemeralKey, Health, Mandates, MerchantAccount, MerchantConnectorAccount,
PaymentMethods, Payments, Payouts, Refunds, Webhooks,
AppState, Configs, Customers, EphemeralKey, Health, Mandates, MerchantAccount,
MerchantConnectorAccount, PaymentMethods, Payments, Payouts, Refunds, Webhooks,
};
#[cfg(feature = "stripe")]
pub use super::compatibility::stripe::StripeApis;