/*
* SPDX-FileCopyrightText: 2026 Sebastiano Vigna
*
* SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later
*/useanyhow::Result;usewebgraph_cli::init_env_logger;usewebgraph_cli::rank::cli_main;pubfnmain()->Result<()>{// Initialize the logger
init_env_logger()?;// Call the main function of the CLI with cli args
cli_main(std::env::args_os())}