detector 0.3.1

A set of types for service registration and discovery.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// 提供服务注册与发现的trait定义
///
pub mod detect;
pub mod error;
pub mod meta;
pub mod service;
pub mod status;
pub mod watch;

// re-exports
pub use detect::*;
pub use error::*;
pub use meta::*;
pub use service::*;
pub use status::*;
pub use watch::*;