ptth/crates/ptth_file_server_bin/src/main.rs

13 lines
223 B
Rust

use std::{
iter::FromIterator,
};
#[tokio::main]
async fn main () -> anyhow::Result <()> {
tracing_subscriber::fmt::init ();
let args = Vec::from_iter (std::env::args_os ());
ptth_file_server::main (&args).await
}