diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2021-05-09 20:11:17 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-09 20:11:17 +0100 |
| commit | e43e5ce74a85d87a625295b9b089a1b5b8e26fab (patch) | |
| tree | afbc97503090e320250440160a8ea9ee775fc170 /src/command/logout.rs | |
| parent | Fix resh importer crashing on end of file (#92) (diff) | |
| download | atuin-e43e5ce74a85d87a625295b9b089a1b5b8e26fab.zip | |
Add logout, only login if not already logged in (#91)
Also:
- Ensures that a key is generated as soon as a user registers!
- Ensures that "atuin key" will generate a key if needed, and doesn't
double base64 encode data
And a few other little fixes :)
Resolves #85
Resolves #86
Diffstat (limited to 'src/command/logout.rs')
| -rw-r--r-- | src/command/logout.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/command/logout.rs b/src/command/logout.rs new file mode 100644 index 00000000..ec7d8dcb --- /dev/null +++ b/src/command/logout.rs @@ -0,0 +1,12 @@ +use std::fs::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"); + } +} |
