about summary refs log tree commit diff stats
path: root/src/user.rs
blob: df785be1922c54e6d9df0aee8f020df5021120f8 (plain) (blame)
1
2
3
4
5
6
7
8
use users;

lazy_static! {
    pub static ref NAME: String = users::get_current_username()
        .expect("Could not get username")
        .into_string()
        .expect("Could not get username");
}