locators.rs

1use anyhow::Result;
2use async_trait::async_trait;
3use dap::DebugAdapterConfig;
4
5#[async_trait]
6pub(super) trait DapLocator: Send + Sync {
7    async fn run_locator(&self, debug_config: &mut DebugAdapterConfig) -> Result<()>;
8}