ethers-rs/ethers-providers/src/transports/mod.rs

10 lines
138 B
Rust
Raw Normal View History

mod common;
mod http;
pub use http::Provider as Http;
#[cfg(feature = "ws")]
mod ws;
#[cfg(feature = "ws")]
pub use ws::Provider as Ws;