mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-03 05:17:02 +08:00
20 lines
455 B
Rust
20 lines
455 B
Rust
//! Hyperswitch interface
|
|
#![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;
|
|
/// connector integrity check interface
|
|
pub mod integrity;
|
|
pub mod metrics;
|
|
pub mod secrets_interface;
|
|
pub mod types;
|
|
pub mod webhooks;
|