forked from mirrors/kingfisher
- Stored optional validation response bodies as boxed strings to avoid allocating empty payloads and to streamline validator caches. - Parallelized git cloning based on the configured job count and begin scanning repositories as soon as each clone finishes to reduce end-to-end scan times. - Combined per-repository results into a single aggregate summary after scans complete. - Added initial access-map support and report viewer html file. Currently beta features.
9 lines
235 B
Rust
9 lines
235 B
Rust
use anyhow::Result;
|
|
|
|
use crate::cli::commands::access_map::AccessMapArgs;
|
|
|
|
use super::AccessMapResult;
|
|
|
|
pub async fn map_access(args: &AccessMapArgs) -> Result<AccessMapResult> {
|
|
super::unsupported_provider(&args.provider).await
|
|
}
|