Skip to main content

Mountain/IPC/WindAirCommands/
GetAirAddress.rs

1
2//! Resolve the Air daemon's gRPC address. Currently hard-coded
3//! to `DEFAULT_AIR_SERVER_ADDRESS`; future revisions will read
4//! a runtime config slot.
5
6use crate::Air::AirClient::DEFAULT_AIR_SERVER_ADDRESS;
7
8pub(super) fn Fn() -> Result<String, String> { Ok(DEFAULT_AIR_SERVER_ADDRESS.to_string()) }