♻️ refactor(gmail_client): change MessageSummary's visibility

- make MessageSummary public for external usage
This commit is contained in:
Jeremiah Russell
2025-10-13 16:48:12 +01:00
committed by Jeremiah Russell
parent 1ff7929095
commit cdcbab0e81

View File

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