This commit is contained in:
2023-11-14 21:12:13 -08:00
parent da15ef0f15
commit 98df04527d
6 changed files with 199 additions and 29 deletions

View File

@@ -7,7 +7,9 @@ pub fn threadset_to_messages(
thread_set: notmuch::ThreadSet,
) -> Result<Vec<Message>, error::ServerError> {
for t in thread_set.0 {
for tn in t.0 {}
for tn in t.0 {
todo!()
}
}
Ok(Vec::new())
}