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//! ## Status
10//!
11//! Zero callers as of 2026-05-02. Remove this entire module when
12//! the live Air client is wired in.
13
14pub mod AirClientType;
15
16pub mod AirMetricsProtoDTO;
17
18pub mod ApplyUpdateRequest;
19
20pub mod ApplyUpdateResponse;
21
22pub mod AuthenticationRequest;
23
24pub mod AuthenticationResponse;
25
26pub mod DEFAULT_AIR_SERVER_ADDRESS;
27
28pub mod DownloadFileResponse;
29
30pub mod DownloadRequest;
31
32pub mod FileResultProtoDTO;
33
34pub mod IndexFilesResponse;
35
36pub mod IndexRequest;
37
38pub mod MetricsRequest;
39
40pub mod MetricsResponse;
41
42pub mod SearchFilesResponse;
43
44pub mod SearchRequest;
45
46pub mod StatusRequest;
47
48pub mod StatusResponse;
49
50pub mod UpdateCheckRequest;
51
52pub mod UpdateCheckResponse;