refactor(shutdown): extract 4 identical Ctrl+C handlers into core/shutdown.rs

This commit is contained in:
teernisse
2026-03-06 13:40:44 -05:00
parent ac5602e565
commit 3a4fc96558
4 changed files with 2016 additions and 3339 deletions

View File

@@ -4,26 +4,16 @@ pub mod config;
pub mod cron;
pub mod cursor;
pub mod db;
pub mod dependent_queue;
pub mod error;
pub mod events_db;
pub mod file_history;
pub mod lock;
pub mod logging;
pub mod metrics;
pub mod note_parser;
pub mod path_resolver;
pub mod paths;
pub mod payloads;
pub mod project;
pub mod references;
pub mod shutdown;
pub mod sync_run;
pub mod time;
pub mod timeline;
pub mod timeline_collect;
pub mod timeline_expand;
pub mod timeline_seed;
pub mod trace;
pub use config::Config;