#[derive(Debug, Clone)]
pub enum CrdtOp {
Read {
collection: String,
document_id: String,
},
Apply {
collection: String,
document_id: String,
delta: Vec<u8>,
peer_id: u64,
mutation_id: u64,
},
SetPolicy {
collection: String,
policy_json: String,
},
}