1 2 3 4 5 6 7 8 9
//! The `loonfs` CLI binary: parse arguments, run the command, render the //! result. use std::process::ExitCode; #[tokio::main] async fn main() -> ExitCode { loonfs_cli::main().await }