relay-core-runtime 0.1.0

High-performance Rust traffic interception engine and proxy platform
pub mod flow_read;
pub mod flow_event;
pub mod rule;
pub mod intercept;
pub mod policy;
pub mod audit;
pub mod status;
#[cfg(feature = "script")]
pub mod script;

pub use flow_read::FlowReadService;
pub use flow_event::FlowEventHub;
pub use rule::RuleService;
pub use intercept::InterceptService;
pub use policy::PolicyService;
pub use audit::AuditService;
pub use status::RuntimeStatusService;
#[cfg(feature = "script")]
pub use script::ScriptService;

#[cfg(test)]
mod tests;