Skip to main content

rrq_runner/
lib.rs

1pub mod registry;
2pub mod runtime;
3pub mod telemetry;
4pub mod types;
5
6pub use registry::Registry;
7pub use runtime::{ENV_RUNNER_TCP_SOCKET, RunnerRuntime, parse_tcp_socket, run_tcp, run_tcp_with};
8pub use telemetry::{NoopTelemetry, Telemetry};
9pub use types::{
10    ExecutionContext, ExecutionError, ExecutionOutcome, ExecutionRequest, OutcomeStatus,
11};