From 84601c5efe0853af153948204a25ed3574c5fe5b Mon Sep 17 00:00:00 2001 From: quambene Date: Mon, 25 Nov 2024 14:52:50 +0100 Subject: [PATCH] Add todo --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 19e80bf..83c6175 100644 --- a/src/main.rs +++ b/src/main.rs @@ -14,6 +14,7 @@ async fn main() -> Result<(), anyhow::Error> { tokio::select! { _ = signal::ctrl_c() => { // Clean up lock file when aborting. + // TODO: finish writing to `bookmarks.json` if target_bookmark_lock_file.exists() { if let Err(err) = fs::remove_file(target_bookmark_lock_file) { eprintln!("Can't remove lock file: {err:?}")