zift 0.2.3

Scan codebases for embedded authorization logic and generate Policy as Code (Rego for OPA, Cedar for AWS Verified Permissions and other Cedar-compatible engines)
Documentation
1
2
3
4
5
6
7
8
use crate::cli::ReportArgs;
use crate::config::ZiftConfig;
use crate::error::Result;

pub fn execute(_args: ReportArgs, _config: ZiftConfig) -> Result<()> {
    eprintln!("Report not yet implemented.");
    Ok(())
}