diff options
| author | Conrad Ludgate <conrad.ludgate@truelayer.com> | 2022-04-21 10:12:56 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-21 09:12:56 +0000 |
| commit | d57f549855caf8ab90b5ea0ae7cc9445f3abedfc (patch) | |
| tree | 0818ff405a3b697a0ca981d215ceb4dbb30cd15a /src/command/logout.rs | |
| parent | Fix SQL cache query (#318) (diff) | |
| download | atuin-d57f549855caf8ab90b5ea0ae7cc9445f3abedfc.zip | |
refactor commands for better separation (#313)
* refactor commands for better separation
* fmt
Diffstat (limited to 'src/command/logout.rs')
| -rw-r--r-- | src/command/logout.rs | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/command/logout.rs b/src/command/logout.rs deleted file mode 100644 index 26d689cf..00000000 --- a/src/command/logout.rs +++ /dev/null @@ -1,12 +0,0 @@ -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"); - } -} |
