1 2 3 4 5 6 7 8 9
use fast_scp::run::run; #[tokio::main] async fn main() { match run().await { Ok(_) => (), Err(e) => eprintln!("Error: {}", e), } }