Skip to main content

eggress_system_proxy/
lib.rs

1pub mod apply;
2pub mod backends;
3pub mod capability;
4pub mod command_runner;
5pub mod inspection;
6pub mod redaction;
7
8pub use apply::{
9    apply_compatibility_proxy, apply_compatibility_proxy_with_runner, plan_apply, AppliedProxy,
10    ApplyPlan, Command, CompatibilityProxyKind, RollbackState,
11};
12pub use capability::{
13    check_system_proxy_capability, system_proxy_platform_info, SystemProxyCapability,
14    SystemProxyCapabilityReport, SystemProxyStatus,
15};
16pub use command_runner::{CommandRunner, MockCommandRunner, RealCommandRunner};
17pub use inspection::{inspect_system_proxy, InspectionResult, SystemProxySettings};