1 2 3 4 5 6 7 8 9 10 11
mod analyzer; mod cli; mod processor; mod report; mod scanner; use anyhow::Result; fn main() -> Result<()> { cli::run() }