ptth/crates/ptth_server/src/bin/ptth_server.rs

13 lines
230 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_server::executable::main (&args).await
}