Start on a new db module

This commit is contained in:
Antonio Scandurra 2025-08-15 17:00:26 +02:00
parent 846ed6adf9
commit 6b6b7e66e1
7 changed files with 180 additions and 7 deletions

View file

@ -4,11 +4,12 @@ use anyhow::Result;
use collections::IndexMap;
use gpui::{Entity, SharedString, Task};
use project::Project;
use serde::{Deserialize, Serialize};
use std::{any::Any, error::Error, fmt, path::Path, rc::Rc, sync::Arc};
use ui::{App, IconName};
use uuid::Uuid;
#[derive(Clone, Debug, Eq, PartialEq)]
#[derive(Clone, Debug, Eq, PartialEq, Serialize, Deserialize)]
pub struct UserMessageId(Arc<str>);
impl UserMessageId {