1use crate::ops::runtime::ready::ReadyOps; 2 3// Internal readiness barrier for bootstrap synchronization. 4// Not a public diagnostic or state view. 5/// 6/// ReadyApi 7/// 8 9pub struct ReadyApi; 10 11impl ReadyApi { 12 #[must_use] 13 pub fn is_ready() -> bool { 14 ReadyOps::is_ready() 15 } 16}