A small Rust crate that wraps the API of fsr/buerostatus and tells wou whether someone is in the office.
rust
if let Ok(is_open) = get_buerostatus() {
if is_open { println!("Someone's inside!"); }
else { println!("No one is there..."); }
}
else {
println!("An error occured!");
}
Please check the documentation for details on certain functions and errors.
This work is licensed under the MIT License. For more information, head over to the LICENSE
file.