bothan_bitfinex/api.rs
1//! Bitfinex REST API client implementation.
2//!
3//! This module provides types and utilities for interacting with the Bitfinex REST API,
4//! including configuration, connection management, error handling, and message processing.
5//!
6//! The module provides:
7//!
8//! - [`builder`] — Builder pattern for creating configured REST API clients.
9//! - [`error`] — Custom error types used during REST API client configuration and data processing.
10//! - [`msg`] — Message types used for communication with the Bitfinex REST API.
11//! - [`rest`] — REST API client implementation for fetching market data.
12
13pub mod builder;
14pub mod error;
15pub mod msg;
16pub mod rest;