use crate::error::Result;
use crate::schema::ScanResult;
pub fn analyze(_result: &ScanResult) -> Result<()> {
Ok(())
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_data_flow_analyze() {
let result = ScanResult::new();
let analysis = analyze(&result);
assert!(analysis.is_ok());
}
}