1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
extern crate tokio;
use clap::Parser;
use dotenv::dotenv;
use crate::cli::*;
mod cli;
#[tokio::main]
async fn main() {
dotenv().ok();
let cli: Cli = Parser::parse();
match &cli.subcommand {
Commands::Analyze { grype, syft, trivy, cyclone, context, file } => {
if let Err(e) = analyze(grype, syft, trivy, cyclone, context, file).await {
eprintln!("Error: {}", e);
}
}
Commands::EnMass { path, context } => {
en_mass(path, context).await;
}
}
}