mirror of
https://github.com/rustdesk/rustdesk-server.git
synced 2026-05-25 23:59:15 +00:00
12 lines
288 B
Rust
12 lines
288 B
Rust
// https://tools.ietf.org/rfc/rfc5128.txt
|
|
// https://blog.csdn.net/bytxl/article/details/44344855
|
|
|
|
use hbbs::*;
|
|
use std::error::Error;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> Result<(), Box<dyn Error>> {
|
|
env_logger::init();
|
|
RendezvousServer::start("0.0.0.0:21116").await?;
|
|
Ok(())
|
|
} |