refactor: Move trait IncomingWebhook to hyperswitch_interfaces (#5191)

This commit is contained in:
DEEPANSHU BANSAL
2024-07-11 16:01:31 +05:30
committed by GitHub
parent 3312e787f9
commit 35d502e3da
27 changed files with 612 additions and 573 deletions

View File

@ -2,10 +2,12 @@
#![warn(missing_docs, missing_debug_implementations)]
pub mod api;
pub mod authentication;
pub mod configs;
/// definition of the new connector integration trait
pub mod connector_integration_v2;
pub mod consts;
pub mod disputes;
pub mod encryption_interface;
pub mod errors;
pub mod events;
@ -14,3 +16,4 @@ pub mod integrity;
pub mod metrics;
pub mod secrets_interface;
pub mod types;
pub mod webhooks;