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,19 @@
use crate::model::Point;
impl From<Point> for session_sharing_protocol::common::Point {
fn from(val: Point) -> Self {
session_sharing_protocol::common::Point {
row: val.row,
col: val.col,
}
}
}
impl From<session_sharing_protocol::common::Point> for Point {
fn from(value: session_sharing_protocol::common::Point) -> Self {
Self {
row: value.row,
col: value.col,
}
}
}