mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-27 19:46:48 +08:00
14 lines
431 B
Rust
14 lines
431 B
Rust
//! connector integration related const declarations
|
|
|
|
/// No error message string const
|
|
pub const NO_ERROR_MESSAGE: &str = "No error message";
|
|
|
|
/// No error code string const
|
|
pub const NO_ERROR_CODE: &str = "No error code";
|
|
|
|
/// Accepted format for request
|
|
pub const ACCEPT_HEADER: &str = "text/html,application/json";
|
|
|
|
/// User agent for request send from backend server
|
|
pub const USER_AGENT: &str = "Hyperswitch-Backend-Server";
|