Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1use anyhow::Result; 2use async_trait::async_trait; 3use task::DebugTaskDefinition; 4 5#[async_trait] 6pub(super) trait DapLocator: Send + Sync { 7 async fn run_locator(&self, debug_config: &mut DebugTaskDefinition) -> Result<()>; 8}