1 2 3 4 5 6 7 8 9
cfg_if::cfg_if! { if #[cfg(feature = "solidity-rpc")] { mod rpc; pub use rpc::*; } else { mod not_rpc; pub use not_rpc::*; } }