#![deny(missing_docs)]
cfg_if::cfg_if! {
if #[cfg(any(feature = "rustls-tls", feature = "native-tls"))] {
pub mod service;
pub mod exchange;
pub use exchange::OkxExchange;
pub use service::{Okx, OkxRequest, OkxResponse};
} else {
compile_error!("Either feature 'rustls-tls' or 'native-tls' must be enabled");
}
}
pub mod utils;
pub mod websocket;
pub mod http;
pub mod error;
pub mod key;
#[macro_use]
extern crate tracing;