engine/Networking/src/public_address.rs

6 lines
121 B
Rust
Raw Normal View History

2024-08-23 11:22:09 +00:00
use async_std::task;
pub fn find_public_address() -> Option<std::net::IpAddr> {
task::block_on(public_ip::addr())
}