engine/Networking/src/hostname.rs

8 lines
195 B
Rust
Raw Normal View History

2024-08-23 11:22:09 +00:00
use anyhow::Result;
pub fn host_name() -> Result<String> {
Ok(hostname::get()?
.into_string()
.map_err(|_| anyhow::Error::msg("Failed converting OsString in host_name"))?)
}