refactor(clipboard-history): split clipboard_history.rs into separate module

This commit refactors the monolithic `src-tauri/src/clipboard_history.rs` file into a dedicated Rust module with a clear separation of concerns. The original 350+ line file has been broken down into smaller, single-responsibility files for types, encryption, business logic (manager), and the background monitor.
This commit is contained in:
ByteAtATime 2025-06-24 10:02:36 -07:00
parent 8218e39ae7
commit bd5c660b71
No known key found for this signature in database
7 changed files with 509 additions and 484 deletions

View file

@ -2,7 +2,7 @@ mod app;
mod browser_extension;
mod cache;
mod clipboard;
mod clipboard_history;
pub mod clipboard_history;
mod desktop;
mod error;
mod extensions;