usenetwork_protocol::transport::local;#[tokio::main]
async fnmain(){// Path is interpreted as a unix socket path on Unix systems
// and as a TCP port on localhost for Windows systems
let socket_path ="/tmp/my.sock";ifletErr(e)=local::start_server(socket_path).await {eprintln!("Server failed: {e}");}}