Initial public release of Warp.

Repo-Sync-Origin: warpdotdev/warp-internal@12af1d983b
This commit is contained in:
David Stern
2026-04-28 08:43:33 -05:00
commit 0dbd3d567a
4982 changed files with 1431549 additions and 0 deletions
@@ -0,0 +1,14 @@
pub mod data_source;
mod search_item;
use chrono::{DateTime, Utc};
/// Lightweight representation of a conversation for the @conversations context menu.
/// Only carries the fields needed for display and insertion — avoids constructing
/// a full `ConversationNavigationData` for cloud conversations that have no local state.
#[derive(Debug)]
pub struct ConversationContextItem {
pub title: String,
pub server_conversation_token: String,
pub last_updated: DateTime<Utc>,
}