portable-network-archive 0.6.0

Portable-Network-Archive cli
Documentation
1
2
3
4
5
6
7
8
9
10
mod cli;
mod command;
mod utils;

use clap::Parser;
use std::io;

fn main() -> io::Result<()> {
    command::entry(cli::Cli::parse())
}