zift 0.1.8

Scan codebases for embedded authorization logic and generate Policy as Code (Rego/OPA today)
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(())
}