Skip to main content

agentsight_analysis/runners/
mod.rs

1// SPDX-License-Identifier: MIT
2// Copyright (c) 2026 eunomia-bpf org.
3
4#[cfg(any(test, feature = "test-support"))]
5pub use agentsight_capture_core::runners::FakeRunner;
6pub use agentsight_capture_core::runners::agent;
7pub use agentsight_capture_core::runners::common;
8pub use agentsight_capture_core::runners::process;
9pub use agentsight_capture_core::runners::{
10    AgentRunner, BinaryRunner, EventStream, ProcessRunner, Runner, RunnerError,
11};
12
13pub mod system;
14pub use system::{SystemConfig, SystemRunner};