openethereum/src/bin/client/rpc/impls/mod.rs

8 lines
146 B
Rust
Raw Normal View History

2016-01-21 01:19:29 +01:00
//! Ethereum rpc interface implementation.
pub mod web3;
pub mod eth;
pub mod net;
pub use self::web3::Web3Client;
pub use self::eth::EthClient;