relay_system/runtime/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
mod metrics;
#[expect(
    clippy::module_inception,
    reason = "contains the Runtime struct, follows tokio"
)]
mod runtime;
mod spawn;

pub use self::metrics::RuntimeMetrics;
pub use self::runtime::{Builder, Runtime};
pub use self::spawn::{spawn, TaskId};