quork 0.9.1

A collection of small things that don't deserve their own crate
Documentation
1
2
3
4
5
6
fn main() {
    use quork::prelude::is_root;
    let root = is_root().unwrap();

    println!("Is the the process running as admin? {}", root);
}