tx3_sdk/
lib.rs

1/*!
2 * TX3 SDK for Rust
3 *
4 * This SDK provides tools for interacting with TX3 services.
5 * Currently includes support for the Transaction Resolve Protocol (TRP).
6 *
7 * ## Usage Example
8 *
9 * ```
10 * use tx3_sdk::trp::{Client, ClientOptions};
11 *
12 * // Create TRP client
13 * let client = Client::new(ClientOptions {
14 *     endpoint: "https://trp.example.com".to_string(),
15 *     headers: None,
16 *     env_args: None,
17 * });
18 * ```
19 */
20
21pub mod trp;