♻️ refactor(gmail_client): move message_summary to gmail_client

- move `message_summary.rs` from `message_list` to `gmail_client` for better organization
- derive `Clone` for `MessageSummary` struct
This commit is contained in:
Jeremiah Russell
2025-10-13 14:58:46 +01:00
committed by Jeremiah Russell
parent 247f8e6b00
commit edc27739f8

View File

@@ -1,4 +1,4 @@
#[derive(Debug)] #[derive(Debug, Clone)]
pub(crate) struct MessageSummary { pub(crate) struct MessageSummary {
id: String, id: String,
subject: Option<String>, subject: Option<String>,