Skip to main content

api_scanner/
lib.rs

1// src/lib.rs
2//
3// Library entry point — re-exports modules so that integration tests
4// and external consumers can reference them.
5
6pub mod auth;
7pub mod auto_report;
8pub mod cli;
9pub mod config;
10#[allow(dead_code)]
11pub mod discovery;
12pub mod error;
13pub mod http_client;
14pub mod progress_tracker;
15pub mod reports;
16pub mod runner;
17pub mod scanner;
18pub mod waf;