2020-11-29 20:22:40 +00:00
|
|
|
#![warn (clippy::pedantic)]
|
|
|
|
|
2021-03-15 20:34:32 +00:00
|
|
|
#[tokio::main]
|
2021-10-02 17:26:56 +00:00
|
|
|
async fn main () -> anyhow::Result <()> {
|
2021-03-15 19:55:12 +00:00
|
|
|
tracing_subscriber::fmt::init ();
|
|
|
|
|
2021-10-02 17:31:06 +00:00
|
|
|
let args = std::env::args_os ();
|
|
|
|
|
|
|
|
ptth_server::executable::main (args).await
|
2020-10-30 22:53:03 +00:00
|
|
|
}
|