ptth/src/bin/server.rs

7 lines
121 B
Rust

use std::error::Error;
#[tokio::main]
async fn main () -> Result <(), Box <dyn Error>> {
ptth::server::main ().await
}