deriv_api/lib.rs
1//! # Deriv API Client Library
2//!
3//! Provides asynchronous WebSocket connection and API call wrappers
4//! for the Deriv API.
5
6pub mod api;
7pub mod client;
8pub mod error;
9pub mod subscription;
10pub mod types;
11mod utils;
12
13pub use client::DerivClient;
14pub use error::{DerivError, Result};
15
16// Potentially re-export schema types if needed
17pub use deriv_api_schema as schema;