1 2 3 4 5 6 7 8 9 10 11
#[cfg(feature = "with_client_implementation")] mod real; #[cfg(not(feature = "with_client_implementation"))] pub(crate) mod noop; #[cfg(feature = "with_client_implementation")] pub use self::real::*; #[cfg(not(feature = "with_client_implementation"))] pub use self::noop::*;