Skip to main content

Mountain/Air/
AirServiceTypesStub.rs

1#![allow(non_snake_case)]
2
3//! Air-integration type stubs. Twenty children: one per request/response
4//! DTO, the placeholder `AirClientType::Struct`, and the
5//! `DEFAULT_AIR_SERVER_ADDRESS::Const` server-address constant. Every
6//! `AirClientType::Struct` method returns "feature not implemented" until
7//! the real `AirLibrary` client lands behind `--features AirIntegration`.
8//!
9//! TODO: zero callers as of 2026-05-02; remove this entire module when
10//! the live Air client is wired in.
11
12pub mod AirClientType;
13pub mod AirMetricsProtoDTO;
14pub mod ApplyUpdateRequest;
15pub mod ApplyUpdateResponse;
16pub mod AuthenticationRequest;
17pub mod AuthenticationResponse;
18pub mod DEFAULT_AIR_SERVER_ADDRESS;
19pub mod DownloadFileResponse;
20pub mod DownloadRequest;
21pub mod FileResultProtoDTO;
22pub mod IndexFilesResponse;
23pub mod IndexRequest;
24pub mod MetricsRequest;
25pub mod MetricsResponse;
26pub mod SearchFilesResponse;
27pub mod SearchRequest;
28pub mod StatusRequest;
29pub mod StatusResponse;
30pub mod UpdateCheckRequest;
31pub mod UpdateCheckResponse;