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

9 lines
165 B
Rust

#![warn (clippy::pedantic)]
#[tokio::main]
async fn main () -> anyhow::Result <()> {
tracing_subscriber::fmt::init ();
ptth_server::executable::main ().await
}