A simple library to detect whether you are root/admin or not
Add `is-root = "0.1.0"` to `[dependencies]` section in your `Cargo.toml`
```rs
use is_root::is_root;
if is_root() {
} else {
}
```
You can find examples in [`examples`](/-/tree/master/examples) directory