use tokio::time::{Duration, sleep};
pub async fn boot() -> String {
sleep(Duration::from_millis(10)).await;
"windows ready".to_string()
}
#[cfg(test)]
mod tests {
use super::*;
#[tokio::test]
async fn boots_windows_runtime() {
assert_eq!(boot().await, "windows ready");
}
}