Skip to main content

Mountain/IPC/WindAirCommands/
GetAirAddress.rs

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