assay-cli 3.17.0

CLI for Assay
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::cli::args::BundleArgs;

#[path = "bundle/coverage.rs"]
mod coverage;
#[path = "bundle/implementation.rs"]
mod implementation;
#[path = "bundle/paths.rs"]
mod paths;
#[path = "bundle/verify.rs"]
mod verify;

pub async fn run(args: BundleArgs, legacy_mode: bool) -> anyhow::Result<i32> {
    implementation::run(args, legacy_mode).await
}