pub fn get_username() -> String {
match std::env::var("USER") {
Ok(user) => user,
Err(_) => String::from("anonymous"),
}
A Fortis Scientia site