1 2 3 4 5 6 7 8 9 10 11
use heim_common::prelude::*; use heim_host as host; #[heim_derive::main] async fn main() -> Result<()> { let boot_time = host::boot_time().await?; dbg!(boot_time); Ok(()) }