1use crate::shared::{DiffSnapshot, DocumentUpdate, Event}; 2use std::sync::Arc; 3 4pub type ServerEvent = Event<Arc<DiffSnapshot>>; 5pub type ServerMessage = Event<DocumentUpdate>;