// SPDX-License-Identifier: GPL-3.0-or-later
// SPDX-FileCopyrightText: (C) 2023 Andreas Hartmann <hartan@7x.de>
// This file is part of cnf, available at <https://gitlab.com/hartang/rust/cnf>
//! # Command-line wrapper for [`cnf_lib`]
useanyhow::Result;useclap::Parser;#[tokio::main]
async fnmain()->Result<()>{cnf::main(cnf::Args::parse()).await
}