jj workspaces over the network
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(core): add subdocuments for lazy blob loading

+17
+17
crates/tandem-core/src/content.rs
··· 1 + //! Content request/response types for lazy blob loading 2 + 3 + use serde::{Deserialize, Serialize}; 4 + 5 + /// Request for lazy content 6 + #[derive(Debug, Clone, Serialize, Deserialize)] 7 + pub struct ContentRequest { 8 + pub hash: String, 9 + pub state_vector: Vec<u8>, 10 + } 11 + 12 + /// Response with content update 13 + #[derive(Debug, Clone, Serialize, Deserialize)] 14 + pub struct ContentResponse { 15 + pub hash: String, 16 + pub update: Vec<u8>, 17 + }