Private
Public Access
1
0

clippy/cleanup

This commit is contained in:
2024-12-21 18:01:00 -08:00
parent 53d4604b63
commit 89f8d21ebb
5 changed files with 25 additions and 11 deletions

View File

@@ -24,7 +24,7 @@ impl ChatDatabase {
db.run_pending_migrations(MIGRATIONS)
.map_err(|e| anyhow::anyhow!("Error running migrations: {}", e))?;
return Ok(Self { db });
Ok(Self { db })
}
pub fn insert_conversation(&mut self, conversation: Conversation) -> Result<()> {