1use anyhow::Result;
2use async_trait::async_trait;
3use task::DebugTaskDefinition;
4
5pub(crate) mod cargo;
6
7#[async_trait]
8pub(super) trait DapLocator: Send + Sync {
9 async fn run_locator(&self, debug_config: DebugTaskDefinition) -> Result<DebugTaskDefinition>;
10}