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

lazy_static! {
    pub static ref NAME: String = users::get_current_username()
        .unwrap()
        .into_string()
        .unwrap();
}