// Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. use clap::Parser as _; #[tokio::main(flavor = "current_thread")] #[allow( clippy::allow_attributes, clippy::unwrap_in_result, reason = "FIXME: Fixed in newer tokio versions." )] async fn main() -> Result<(), neqo_bin::client::Error> { let args = neqo_bin::client::Args::parse(); #[cfg_attr(apple, expect(clippy::large_futures, reason = "OK in test code."))] neqo_bin::client::client(args).await }