Source code
Revision control
Copy as Markdown
Other Tools
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use clap::Parser as _;
use neqo_bin::server::Res;
#[tokio::main(flavor = "current_thread")]
async fn main() -> Res<()> {
let args = neqo_bin::server::Args::parse();
neqo_bin::server::run(args)?.0.await
}