relay_system/runtime/mod.rs
1mod handle;
2mod metrics;
3#[expect(
4 clippy::module_inception,
5 reason = "contains the Runtime struct, follows tokio"
6)]
7mod runtime;
8mod spawn;
9
10pub use self::handle::{Handle, ServiceSet};
11pub use self::metrics::RuntimeMetrics;
12pub use self::runtime::{Builder, Runtime};
13pub use self::spawn::{TaskId, spawn, spawn_in};