Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1mod channel_store; 2 3pub mod channel_buffer; 4use std::sync::Arc; 5 6pub use channel_store::*; 7use client::Client; 8 9#[cfg(test)] 10mod channel_store_tests; 11 12pub fn init(client: &Arc<Client>) { 13 channel_buffer::init(client); 14}