zift 0.2.2

Scan codebases for embedded authorization logic and generate Policy as Code (Rego/OPA today)
Documentation
1
2
3
4
5
6
7
8
9
10
use clap::Parser;

use zift::cli::Cli;

fn main() {
    if let Err(e) = zift::run(Cli::parse()) {
        eprintln!("Error: {e}");
        std::process::exit(1);
    }
}