blob: 26d689cf3643ab02dbe7c5d618ed617718525c61 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
use fs_err::remove_file;
pub fn run() {
let session_path = atuin_common::utils::data_dir().join("session");
if session_path.exists() {
remove_file(session_path.as_path()).expect("Failed to remove session file");
println!("You have logged out!");
} else {
println!("You are not logged in");
}
}
|