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

9 lines
144 B
Rust
Raw Normal View History

2016-01-21 01:19:29 +01:00
//! Ethereum rpc interfaces.
pub mod web3;
pub mod eth;
pub mod net;
pub use self::web3::Web3;
pub use self::eth::Eth;
pub use self::net::Net;