feat(connector_integration): integrate Rapyd connector (#357)

This commit is contained in:
Manoj Ghorela
2023-01-16 23:58:21 +05:30
committed by GitHub
parent 9fbe738427
commit 006e9a8892
15 changed files with 1306 additions and 2 deletions

View File

@ -19,3 +19,6 @@ pub(crate) const NO_ERROR_CODE: &str = "No error code";
// General purpose base64 engine
pub(crate) const BASE64_ENGINE: base64::engine::GeneralPurpose =
base64::engine::general_purpose::STANDARD;
pub(crate) const BASE64_ENGINE_URL_SAFE: base64::engine::GeneralPurpose =
base64::engine::general_purpose::URL_SAFE;