(
&self,
_project_root: &Path,
_cache: &mut agentsync::skills::detect::ContentCache,
)
| 640 | |
| 641 | impl agentsync::skills::detect::RepoDetector for StaticDetector { |
| 642 | fn detect( |
| 643 | &self, |
| 644 | _project_root: &Path, |
| 645 | _cache: &mut agentsync::skills::detect::ContentCache, |
| 646 | ) -> Result<Vec<TechnologyDetection>> { |
| 647 | Ok(self.detections.clone()) |
| 648 | } |
| 649 | } |
| 650 | |
| 651 | #[derive(Default)] |
no outgoing calls