engine/Networking/src/public_address.rs
2024-08-23 13:22:09 +02:00

5 lines
121 B
Rust

use async_std::task;
pub fn find_public_address() -> Option<std::net::IpAddr> {
task::block_on(public_ip::addr())
}