normalize-filter 0.3.1

File filtering with glob patterns and alias resolution for normalize
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[tokio::main]
async fn main() -> std::process::ExitCode {
    let service = normalize_filter::service::FilterCliService::new();
    match service.cli_run_async().await {
        Ok(()) => std::process::ExitCode::SUCCESS,
        Err(e) => {
            eprintln!("{}", e);
            std::process::ExitCode::FAILURE
        }
    }
}