portable-network-archive 0.31.0

Portable-Network-Archive cli
Documentation
1
2
3
4
5
6
7
8
9
use clap::Parser;
use portable_network_archive::cli;

#[hooq::hooq(anyhow)]
fn main() -> anyhow::Result<()> {
    let cli = cli::Cli::parse();
    cli.init_logger()?;
    cli.execute()
}