Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1mod now_tool; 2 3use assistant_tool::ToolRegistry; 4use gpui::App; 5 6use crate::now_tool::NowTool; 7 8pub fn init(cx: &mut App) { 9 assistant_tool::init(cx); 10 11 let registry = ToolRegistry::global(cx); 12 registry.register_tool(NowTool); 13}