Documentation
1
2
3
4
5
6
7
8
Check if the current user is admin, use `powershell` on windows and
`libc::getuid/libc::geteuid` on unix

```rust
fn main() {
    println!("is_admin: {}", is_admin::is_admin())
}
```