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

9 lines
165 B
Rust
Raw Normal View History

2020-11-29 20:22:40 +00:00
#![warn (clippy::pedantic)]
2021-03-15 20:34:32 +00:00
#[tokio::main]
async fn main () -> anyhow::Result <()> {
tracing_subscriber::fmt::init ();
ptth_server::executable::main ().await
}