feat(business_profile): add business profile table and CRUD endpoints (#1928)

This commit is contained in:
Narayan Bhat
2023-08-18 14:53:29 +05:30
committed by GitHub
parent 156430a570
commit 53956d6f83
23 changed files with 933 additions and 9 deletions

View File

@ -25,9 +25,9 @@ pub use self::app::DummyConnector;
#[cfg(feature = "payouts")]
pub use self::app::Payouts;
pub use self::app::{
ApiKeys, AppState, Cache, Cards, Configs, Customers, Disputes, EphemeralKey, Files, Health,
Mandates, MerchantAccount, MerchantConnectorAccount, PaymentMethods, Payments, Refunds,
Webhooks,
ApiKeys, AppState, BusinessProfile, Cache, Cards, Configs, Customers, Disputes, EphemeralKey,
Files, Health, Mandates, MerchantAccount, MerchantConnectorAccount, PaymentMethods, Payments,
Refunds, Webhooks,
};
#[cfg(feature = "stripe")]
pub use super::compatibility::stripe::StripeApis;