tinkoff_acquiring/lib.rs
1#![forbid(unsafe_code)]
2
3mod client;
4mod token;
5mod types;
6mod webhook;
7
8#[cfg(feature = "blocking")]
9pub mod blocking;
10
11pub use crate::client::{TinkoffClient, TinkoffClientBuilder};
12pub use crate::token::{make_token, top_fields_from_value};
13pub use crate::types::*;
14pub use crate::webhook::{verify_webhook_token, WebhookVerifyError};