ptth/src/bin/server.rs

7 lines
121 B
Rust
Raw Normal View History

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