1 2 3 4 5 6 7 8 9 10 11
#[cfg(feature = "consul")] pub mod consul; #[cfg(feature = "memory")] pub mod memory; #[cfg(feature = "consul")] pub use consul::ConsulRegistry; #[cfg(feature = "memory")] pub use memory::MemoryRegistry;