Skip to main content

DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/IPC/WindAirCommands/
GetAirAddress.rs

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