k8s_netinspect/lib.rs
1//! k8s-netinspect library
2//!
3//! A comprehensive Kubernetes network debugging tool that provides
4//! advanced RBAC validation and network connectivity analysis.
5
6pub mod errors;
7pub mod validation;
8pub mod commands;
9
10// Re-export commonly used types for convenience
11pub use errors::{NetInspectError, NetInspectResult};
12pub use validation::Validator;