//! borsa-core
//!
//! Core types, traits, and utilities shared across the borsa ecosystem.
//!
//! - `types`: common data structures (quotes, candles, actions, requests).
//! - `connector`: the `BorsaConnector` trait and capability provider traits.
//! - `timeseries`: helpers to merge history from multiple connectors.
/// Connector capability traits and the primary `BorsaConnector` interface.
/// Core error type shared by orchestrator and connectors.
/// Internal stream utilities used by `StreamHandle` and tests.
/// Time-series utilities for merging and resampling.
pub use BorsaConnector;
pub use BorsaError;
pub use ;
pub use ;
pub use ;
pub use *;