revoke-registry 0.3.0

Service registry and discovery for Revoke microservices framework
Documentation
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;