etalon-techscan 0.9.3

Blazing fast asynchronous technology fingerprinting engine
Documentation
1
2
3
4
5
6
7
use crate::types::DetectedTech;

pub async fn lookup(_domain: &str) -> anyhow::Result<Vec<DetectedTech>> {
    let techs = Vec::new();
    // Stub implementation for compilation
    Ok(techs)
}