From 602145c956bb594ca0d0e10601cc4ad1a71cf70d Mon Sep 17 00:00:00 2001 From: Josh Kingsley Date: Sun, 23 Nov 2025 19:27:57 +0200 Subject: feat: integrate web and doc packages --- crdt/src/op.rs | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 crdt/src/op.rs (limited to 'crdt/src/op.rs') diff --git a/crdt/src/op.rs b/crdt/src/op.rs deleted file mode 100644 index 8f5f8b5..0000000 --- a/crdt/src/op.rs +++ /dev/null @@ -1,21 +0,0 @@ -use uuid::Uuid; - -use crate::vector_clock::VectorClock; - -pub struct Op { - pub(crate) id: Uuid, - pub(crate) clock: VectorClock, - pub(crate) kind: OpKind, -} - -pub enum OpKind { - CreateGrid(CreateGrid), - ChangeSubdivisions(ChangeSubdivisions), -} - -pub struct CreateGrid { - pub(crate) rows: usize, - pub(crate) base_cells_per_row: usize, -} - -pub struct ChangeSubdivisions {} -- cgit v1.2.3