rs-zero 0.2.3

Rust-first microservice framework inspired by go-zero engineering practices
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Kubernetes discovery adapter fixture mapper and watcher facade.

pub mod cache;
pub mod config;
pub mod endpoint_slice;
pub mod error;
pub mod mapper;
pub mod watcher;

pub use cache::{KubeDiscoveryCache, KubeDiscoveryStatus};
pub use config::KubeDiscoveryConfig;
pub use endpoint_slice::{
    KubeSliceCacheUpdate, SERVICE_NAME_LABEL, map_endpoint_slice, map_endpoint_slice_json,
};
pub use error::{KubeDiscoveryError, KubeDiscoveryResult};
pub use mapper::{KubeEndpoint, map_endpoints};
pub use watcher::KubeDiscovery;