1
2
3
4
5
6
7
8
9
10
use crate::RustLanguage;
use proto_core::{async_trait, Detector, ProtoError};
use std::path::Path;

#[async_trait]
impl Detector<'_> for RustLanguage {
    async fn detect_version_from(&self, _working_dir: &Path) -> Result<Option<String>, ProtoError> {
        Ok(None)
    }
}