feat(router): add db interface for /relay (#6879)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Shankar Singh C
2024-12-22 22:41:28 +05:30
committed by GitHub
parent 977cb704e7
commit 0f8b0b3bc8
29 changed files with 1152 additions and 58 deletions

View File

@ -58,6 +58,8 @@ pub mod verify_connector;
pub mod webhook_events;
pub mod webhooks;
pub mod relay;
#[cfg(feature = "dummy_connector")]
pub use self::app::DummyConnector;
#[cfg(all(feature = "olap", feature = "recon", feature = "v1"))]
@ -66,7 +68,7 @@ pub use self::app::{
ApiKeys, AppState, ApplePayCertificatesMigration, Cache, Cards, Configs, ConnectorOnboarding,
Customers, Disputes, EphemeralKey, Files, Forex, Gsm, Health, Mandates, MerchantAccount,
MerchantConnectorAccount, PaymentLink, PaymentMethods, Payments, Poll, Profile, ProfileNew,
Refunds, SessionState, User, Webhooks,
Refunds, Relay, SessionState, User, Webhooks,
};
#[cfg(feature = "olap")]
pub use self::app::{Blocklist, Organization, Routing, Verify, WebhookEvents};