heim-host 0.0.11

Cross-platform host information
Documentation
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(())
}