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