1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//! Route foundation: additive, runtime-unwired types for EPIC #2608.
//!
//! This module tree introduces the canonical identity newtypes (#3084) and the
//! `ReadyRouteCandidate` / `RouteResolver` contract (#3384) without touching
//! any runtime routing path. Nothing here is consumed by `config.rs`, the TUI,
//! the client, or the engine yet; it is a self-contained seam that later
//! tracks will wire in.
//!
//! Layering:
//! - [`ids`] — provider/model/wire string newtypes + namespace hints.
//! - [`descriptor`] — route-facing view over the static provider registry.
//! - [`offering`] — provider/model offering seam (wire-id binding).
//! - [`candidate`] — the runtime-resolved executable route + its parts.
//! - [`errors`] — route resolution errors.
//! - [`resolver`] — the sole producer of [`candidate::ReadyRouteCandidate`].
//!
//! Naming: the request/response wire shape is spelled [`RequestProtocol`],
//! which is a re-export alias of [`crate::provider::WireFormat`] rather than a
//! fourth protocol synonym.
/// The selected endpoint's request/response wire shape.
///
/// Alias of [`crate::provider::WireFormat`]; intentionally NOT a new enum, to
/// avoid introducing yet another protocol synonym.
pub use crateWireFormat as RequestProtocol;
pub use ;
pub use ;
pub use RouteError;
pub use ;
pub use ;
pub use ;