Mountain/Air/AirServiceTypesStub.rs
1
2//! Air-integration type stubs. Twenty children: one per request/response
3//! DTO, the placeholder `AirClientType::Struct`, and the
4//! `DEFAULT_AIR_SERVER_ADDRESS::Const` server-address constant. Every
5//! `AirClientType::Struct` method returns "feature not implemented" until
6//! the real `AirLibrary` client lands behind `--features AirIntegration`.
7//!
8//! ## Status
9//!
10//! Zero callers as of 2026-05-02. Remove this entire module when
11//! the live Air client is wired in.
12
13pub mod AirClientType;
14
15pub mod AirMetricsProtoDTO;
16
17pub mod ApplyUpdateRequest;
18
19pub mod ApplyUpdateResponse;
20
21pub mod AuthenticationRequest;
22
23pub mod AuthenticationResponse;
24
25pub mod DEFAULT_AIR_SERVER_ADDRESS;
26
27pub mod DownloadFileResponse;
28
29pub mod DownloadRequest;
30
31pub mod FileResultProtoDTO;
32
33pub mod IndexFilesResponse;
34
35pub mod IndexRequest;
36
37pub mod MetricsRequest;
38
39pub mod MetricsResponse;
40
41pub mod SearchFilesResponse;
42
43pub mod SearchRequest;
44
45pub mod StatusRequest;
46
47pub mod StatusResponse;
48
49pub mod UpdateCheckRequest;
50
51pub mod UpdateCheckResponse;