Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1mod agent; 2mod native_agent_server; 3mod templates; 4mod thread; 5mod tools; 6 7#[cfg(test)] 8mod tests; 9 10pub use agent::*; 11pub use native_agent_server::NativeAgentServer; 12pub use templates::*; 13pub use thread::*; 14pub use tools::*;