polyte_core/
lib.rs

1//! # polyte-core
2//!
3//! Core utilities and shared types for Polyte Polymarket API clients.
4//!
5//! This crate provides common functionality used across `polyte-clob` and `polyte-gamma`:
6//! - Shared error types and error handling
7//! - HTTP client configuration
8//! - Request builder utilities
9
10pub mod client;
11pub mod error;
12pub mod request;
13
14pub use client::{ClientBuilder, ClientConfig};
15pub use error::ApiError;
16pub use request::{QueryBuilder, Request, RequestError};