initial work on message history and data transfer

This commit is contained in:
2026-02-09 20:57:47 +02:00
parent e878b8120b
commit e63fd76d2f
6 changed files with 149 additions and 49 deletions

View File

@@ -10,7 +10,7 @@ pub mod chatmessage {
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct MessageHistory {
pub chat_id: i64,
pub chat_id: Option<i64>,
pub history: Vec<Message>,
}
}