rs-zero 0.1.1

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

pub mod config;
pub mod error;
pub mod mapper;
pub mod watcher;

pub use config::KubeDiscoveryConfig;
pub use error::{KubeDiscoveryError, KubeDiscoveryResult};
pub use mapper::{KubeEndpoint, map_endpoints};
pub use watcher::KubeDiscovery;